Package com.foundationdb.qp.storeadapter.indexcursor

Examples of com.foundationdb.qp.storeadapter.indexcursor.MergeJoinSorter


                               API.Ordering ordering,
                               API.SortOption sortOption,
                               InOutTap loadTap)
    {
        //return new PersistitSorter(context, bindings, input, rowType, ordering, sortOption, loadTap);
        return new MergeJoinSorter(context, bindings, input, rowType, ordering, sortOption, loadTap);
    }
View Full Code Here


    @Override
    public Sorter createSorter(QueryContext context, QueryBindings bindings,
            Cursor input, RowType rowType, Ordering ordering,
            SortOption sortOption, InOutTap loadTap) {
        return new MergeJoinSorter(context, bindings, input, rowType, ordering, sortOption, loadTap);
    }
View Full Code Here

                               RowCursor input,
                               RowType rowType,
                               API.Ordering ordering,
                               API.SortOption sortOption,
                               InOutTap loadTap) {
        return new MergeJoinSorter(context, bindings, input, rowType, ordering, sortOption, loadTap);
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.qp.storeadapter.indexcursor.MergeJoinSorter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.