Package lupos.engine.operators.singleinput

Examples of lupos.engine.operators.singleinput.ComputeBindings


          return false;
        }
      } else if(n instanceof ASTGraphConstraint){
        n.accept(this, connection);
      } else if(n instanceof ASTBindings){
        final ComputeBindings computeBindings = new ComputeBindings(this.getQueryResultFromValuesClause((ASTBindings)n));

        this.indexScanCreator.createEmptyIndexScanAndConnectWithRoot(new OperatorIDTuple(computeBindings, 0));

        connection.connect(computeBindings);
      } else {
View Full Code Here


    final int numberChildren = node.jjtGetNumChildren();
    for (int i = 0; i < numberChildren; i++) {
      if (node.jjtGetChild(i) instanceof ASTBindings) {

        // Inserting the join operation
        final ComputeBindings computeBindings = new ComputeBindings(this.getQueryResultFromValuesClause((ASTBindings)node.jjtGetChild(i)));
        final Join join = new Join();
        join.addSucceedingOperator(this.result);

        computeBindings.addSucceedingOperator(new OperatorIDTuple(join,1));

        this.indexScanCreator.createEmptyIndexScanAndConnectWithRoot(new OperatorIDTuple(computeBindings, 0));
        lastOperator = join;
      }
    }
View Full Code Here

TOP

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

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.