Package org.eigenbase.rel

Examples of org.eigenbase.rel.WindowRel$WindowKey


    super(RelOptHelper.some(WindowRel.class, Convention.NONE, RelOptHelper.any(RelNode.class)), "DrillWindowRule");
  }

  @Override
  public void onMatch(RelOptRuleCall call) {
    final WindowRel window = call.rel(0);
    final RelNode input = call.rel(1);
    final RelTraitSet traits = window.getTraitSet().plus(DrillRel.DRILL_LOGICAL);
    final RelNode convertedInput = convert(input, traits);
    call.transformTo(
        new DrillWindowRel(
            window.getCluster(),
            traits,
            convertedInput,
            Lists.<RexLiteral>newArrayList(),
            window.getRowType(),
            window.windows));
  }
View Full Code Here

TOP

Related Classes of org.eigenbase.rel.WindowRel$WindowKey

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.