Package lupos.engine.operators.singleinput

Examples of lupos.engine.operators.singleinput.Result


   */
  protected void performSubQueryAndGetWholeResult(final SimpleNode node,
      final Root collection,
      final CommonCoreQueryEvaluator<Node> evaluator_param) {
    final BasicOperator oldRoot = evaluator_param.getRootNode();
    final Result oldResult = evaluator_param.getResultOperator();
    final Map<Variable, Integer> oldBindingsFactory = evaluator_param.getBindingsFactory().getPosVariables();

    final Result result = setupEvaluator(evaluator_param, (Root) collection.deepClone());

    final CollectResult cr = new CollectResult(false);
    result.addApplication(cr);

    evaluator_param.logicalOptimization();
    evaluator_param.physicalOptimization();
    try {
      evaluator_param.evaluateQuery();
View Full Code Here

TOP

Related Classes of lupos.engine.operators.singleinput.Result

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.