Examples of incrementTotalDataSources()


Examples of org.apache.vxquery.compiler.rewriter.VXQueryOptimizationContext.incrementTotalDataSources()

    public boolean rewritePre(Mutable<ILogicalOperator> opRef, IOptimizationContext context) throws AlgebricksException {
        if (context.checkIfInDontApplySet(this, opRef.getValue())) {
            return false;
        }
        VXQueryOptimizationContext vxqueryContext = (VXQueryOptimizationContext) context;
        vxqueryContext.incrementTotalDataSources();
        context.addToDontApplySet(this, opRef.getValue());
        return false;
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.