Package xbird.xquery.dm.value.sequence

Examples of xbird.xquery.dm.value.sequence.GroupedSequence$GroupEntry


            PreGroupingVariableExtractor extractor = new PreGroupingVariableExtractor(specs);
            extractor.visit(_filteredReturnExpr, dynEnv);
            List<BindingVariable> nonGroupingVariables = extractor.getNonGroupingVariables();

            input = new GroupedSequence(input, specs, nonGroupingVariables, contextSeq, dynEnv, _groupByClause.isOrdering());
        }
        // where + return
        Sequence ret = new PipedActionSequence(input, _filteredReturnExpr, dynEnv);
        // order by     TODO PERFORMANCE eager ordering
        if(!_orderSpecs.isEmpty()) {
View Full Code Here

TOP

Related Classes of xbird.xquery.dm.value.sequence.GroupedSequence$GroupEntry

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.