Package net.hydromatic.optiq.rules.java.RexToLixTranslator

Examples of net.hydromatic.optiq.rules.java.RexToLixTranslator.InputGetter


   * @param exps Expressions
   * @param rowType describes the structure of the input row.
   */
  public RexExecutable getExecutable(RexBuilder rexBuilder, List<RexNode> exps,
      RelDataType rowType) {
    final InputGetter getter =
        new DataContextInputGetter(rowType, rexBuilder.getTypeFactory());
    final String code = compile(rexBuilder, exps, getter, rowType);
    return new RexExecutable(code, "generated Rex code");
  }
View Full Code Here


   * @param exps Expressions
   * @param rowType describes the structure of the input row.
   */
  public RexExecutable getExecutable(RexBuilder rexBuilder, List<RexNode> exps,
      RelDataType rowType) {
    final InputGetter getter =
        new DataContextInputGetter(rowType, rexBuilder.getTypeFactory());
    final String code = compile(rexBuilder, exps, getter, rowType);
    return new RexExecutable(code, "generated Rex code");
  }
View Full Code Here

   * @param exps Expressions
   * @param rowType describes the structure of the input row.
   */
  public RexExecutable getExecutable(RexBuilder rexBuilder, List<RexNode> exps,
      RelDataType rowType) {
    final InputGetter getter =
        new DataContextInputGetter(rowType, rexBuilder.getTypeFactory());
    final String code = compile(rexBuilder, exps, getter, rowType);
    return new RexExecutable(code, "generated Rex code");
  }
View Full Code Here

TOP

Related Classes of net.hydromatic.optiq.rules.java.RexToLixTranslator.InputGetter

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.