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;
}
}