Examples of InputReference


Examples of com.facebook.presto.sql.tree.InputReference

    public Expression rewriteQualifiedNameReference(QualifiedNameReference node, Void context, ExpressionTreeRewriter<Void> treeRewriter)
    {
        Integer channel = symbolToChannelMapping.get(Symbol.fromQualifiedName(node.getName()));
        Preconditions.checkArgument(channel != null, "Cannot resolve symbol %s", node.getName());

        return new InputReference(channel);
    }
View Full Code Here

Examples of com.facebook.presto.sql.tree.InputReference

    public Expression rewriteQualifiedNameReference(QualifiedNameReference node, Void context, ExpressionTreeRewriter<Void> treeRewriter)
    {
        Input input = symbolToInputMapping.get(Symbol.fromQualifiedName(node.getName()));
        Preconditions.checkArgument(input != null, "Cannot resolve symbol %s", node.getName());

        return new InputReference(input);
    }
View Full Code Here

Examples of com.facebook.presto.sql.tree.InputReference

        return expression;
    }

    public static InputReference input(IdentityHashMap<Expression, Type> types, int channel, Type type)
    {
        InputReference expression = new InputReference(channel);
        types.put(expression, type);
        return expression;
    }
View Full Code Here

Examples of com.facebook.presto.sql.tree.InputReference

        return expression;
    }

    public static InputReference input(IdentityHashMap<Expression, Type> types, int channel, Type type)
    {
        InputReference expression = new InputReference(new Input(channel));
        types.put(expression, type);
        return expression;
    }
View Full Code Here

Examples of eu.admire.dispel.references.InputReference

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setTarget(InputReference newTarget) {
    InputReference oldTarget = target;
    target = newTarget;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, StatementsPackage.CONNECTION_STATEMENT__TARGET, oldTarget, target));
  }
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.