Package org.apache.vxquery.compiler.rewriter.rules

Examples of org.apache.vxquery.compiler.rewriter.rules.ConvertAssignToAggregateRule


        normalization.add(new ConsolidateAssignAggregateRule());
        normalization.add(new RemoveRedundantVariablesRule());
        normalization.add(new RemoveUnusedAssignAndAggregateRule());

        // Find assign for scalar aggregate function.
        normalization.add(new ConvertAssignToAggregateRule());

        // Use two step aggregate operators if possible.
        normalization.add(new IntroduceTwoStepAggregateRule());

        // Used to clean up any missing noops after all the subplans have been altered.
View Full Code Here

TOP

Related Classes of org.apache.vxquery.compiler.rewriter.rules.ConvertAssignToAggregateRule

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.