Java Code Examples for org.apache.calcite.tools.Program#run()
The following examples show how to use
org.apache.calcite.tools.Program#run() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RelOptMaterialization.java From Bats with Apache License 2.0 | 6 votes |
/** * Converts a relational expression to a form where * {@link org.apache.calcite.rel.logical.LogicalJoin}s are * as close to leaves as possible. */ public static RelNode toLeafJoinForm(RelNode rel) { final Program program = Programs.hep( ImmutableList.of( JoinProjectTransposeRule.RIGHT_PROJECT, JoinProjectTransposeRule.LEFT_PROJECT, FilterJoinRule.FilterIntoJoinRule.FILTER_ON_JOIN, ProjectRemoveRule.INSTANCE, ProjectMergeRule.INSTANCE), false, DefaultRelMetadataProvider.INSTANCE); if (CalciteSystemProperty.DEBUG.value()) { System.out.println( RelOptUtil.dumpPlan("before", rel, SqlExplainFormat.TEXT, SqlExplainLevel.DIGEST_ATTRIBUTES)); } final RelNode rel2 = program.run(null, rel, null, ImmutableList.of(), ImmutableList.of()); if (CalciteSystemProperty.DEBUG.value()) { System.out.println( RelOptUtil.dumpPlan("after", rel2, SqlExplainFormat.TEXT, SqlExplainLevel.DIGEST_ATTRIBUTES)); } return rel2; }
Example 2
Source File: TableEnv.java From marble with Apache License 2.0 | 6 votes |
protected RelRoot getSqlPlanRel(String sql) throws Throwable { try (Planner planner = Frameworks.getPlanner(frameworkConfig)) { RelRoot root; final SqlNode parsedSqlNode = planner.parse(sql); final Pair<SqlNode, RelDataType> validatedSqlNodeAndType = planner .validateAndGetType( parsedSqlNode); root = planner.rel(validatedSqlNodeAndType.getKey()); final Program program = createProgram(); //getDesiredTraits final RelTraitSet desiredTraits = root.rel.getTraitSet() .replace(EnumerableConvention.INSTANCE) .replace(root.collation) .simplify(); RelNode logicalRelNode = root.rel; final RelNode optimizedRelNode = program.run( root.rel.getCluster().getPlanner(), logicalRelNode, desiredTraits, Collections.emptyList(), Collections.emptyList()); root = root.withRel(optimizedRelNode); return root; } }
Example 3
Source File: MycatCalcitePlanner.java From Mycat2 with GNU General Public License v3.0 | 6 votes |
public static RelNode toPhysical(RelNode rel, Consumer<RelOptPlanner> setting) { final RelOptPlanner planner = rel.getCluster().getPlanner(); planner.clear(); setting.accept(planner); planner.addRule(new RelOptRule(operand(MycatTransientSQLTableScan.class, none()), RelFactories.LOGICAL_BUILDER, "MycatTransientSQLTableScan") { @Override public void onMatch(RelOptRuleCall call) { final MycatTransientSQLTableScan scan = call.rel(0); final RelOptTable table = scan.getTable(); if (Bindables.BindableTableScan.canHandle(table)) { call.transformTo( Bindables.BindableTableScan.create(scan.getCluster(), table)); } } }); final Program program = Programs.of(RuleSets.ofList(planner.getRules())); return program.run(planner, rel, rel.getTraitSet().replace(EnumerableConvention.INSTANCE), ImmutableList.of(), ImmutableList.of()); }
Example 4
Source File: PigConverter.java From calcite with Apache License 2.0 | 6 votes |
private List<RelNode> optimizePlans(List<RelNode> originalRels, List<RelOptRule> rules) { final RelOptPlanner planner = originalRels.get(0).getCluster().getPlanner(); // Remember old rule set of the planner before resetting it with new rules final List<RelOptRule> oldRules = planner.getRules(); resetPlannerRules(planner, rules); final Program program = Programs.of(RuleSets.ofList(planner.getRules())); final List<RelNode> optimizedPlans = new ArrayList<>(); for (RelNode rel : originalRels) { final RelCollation collation = rel instanceof Sort ? ((Sort) rel).collation : RelCollations.EMPTY; // Apply the planner to obtain the physical plan final RelNode physicalPlan = program.run(planner, rel, rel.getTraitSet().replace(EnumerableConvention.INSTANCE) .replace(collation).simplify(), ImmutableList.of(), ImmutableList.of()); // Then convert the physical plan back to logical plan final RelNode logicalPlan = new ToLogicalConverter(builder).visit(physicalPlan); optimizedPlans.add(logicalPlan); } resetPlannerRules(planner, oldRules); return optimizedPlans; }
Example 5
Source File: RelOptMaterialization.java From calcite with Apache License 2.0 | 6 votes |
/** * Converts a relational expression to a form where * {@link org.apache.calcite.rel.logical.LogicalJoin}s are * as close to leaves as possible. */ public static RelNode toLeafJoinForm(RelNode rel) { final Program program = Programs.hep( ImmutableList.of( JoinProjectTransposeRule.RIGHT_PROJECT, JoinProjectTransposeRule.LEFT_PROJECT, FilterJoinRule.FilterIntoJoinRule.FILTER_ON_JOIN, ProjectRemoveRule.INSTANCE, ProjectMergeRule.INSTANCE), false, DefaultRelMetadataProvider.INSTANCE); if (CalciteSystemProperty.DEBUG.value()) { System.out.println( RelOptUtil.dumpPlan("before", rel, SqlExplainFormat.TEXT, SqlExplainLevel.DIGEST_ATTRIBUTES)); } final RelNode rel2 = program.run(null, rel, null, ImmutableList.of(), ImmutableList.of()); if (CalciteSystemProperty.DEBUG.value()) { System.out.println( RelOptUtil.dumpPlan("after", rel2, SqlExplainFormat.TEXT, SqlExplainLevel.DIGEST_ATTRIBUTES)); } return rel2; }
Example 6
Source File: SqlHintsConverterTest.java From calcite with Apache License 2.0 | 6 votes |
@Test void testUseMergeJoin() { final String sql = "select /*+ use_merge_join(emp, dept) */\n" + "ename, job, sal, dept.name\n" + "from emp join dept on emp.deptno = dept.deptno"; RelOptPlanner planner = new VolcanoPlanner(); planner.addRelTraitDef(ConventionTraitDef.INSTANCE); planner.addRelTraitDef(RelCollationTraitDef.INSTANCE); Tester tester1 = tester.withDecorrelation(true) .withClusterFactory( relOptCluster -> RelOptCluster.create(planner, relOptCluster.getRexBuilder())); final RelNode rel = tester1.convertSqlToRel(sql).rel; RuleSet ruleSet = RuleSets.ofList( EnumerableRules.ENUMERABLE_MERGE_JOIN_RULE, EnumerableRules.ENUMERABLE_JOIN_RULE, EnumerableRules.ENUMERABLE_PROJECT_RULE, EnumerableRules.ENUMERABLE_TABLE_SCAN_RULE, EnumerableRules.ENUMERABLE_SORT_RULE, AbstractConverter.ExpandConversionRule.INSTANCE); Program program = Programs.of(ruleSet); RelTraitSet toTraits = rel .getCluster() .traitSet() .replace(EnumerableConvention.INSTANCE); RelNode relAfter = program.run(planner, rel, toTraits, Collections.emptyList(), Collections.emptyList()); String planAfter = NL + RelOptUtil.toString(relAfter); getDiffRepos().assertEquals("planAfter", "${planAfter}", planAfter); }
Example 7
Source File: BatsOptimizerTest.java From Bats with Apache License 2.0 | 5 votes |
static void testPrograms(RelNode relNode) { final RelOptPlanner planner = relNode.getCluster().getPlanner(); final Program program = Programs.ofRules(ReduceExpressionsRule.PROJECT_INSTANCE); relNode = program.run(planner, relNode, relNode.getTraitSet(), ImmutableList.of(), ImmutableList.of()); String plan = RelOptUtil.toString(relNode); System.out.println(plan); }
Example 8
Source File: SequenceProgram.java From calcite-sql-rewriter with Apache License 2.0 | 5 votes |
@Override public RelNode run(RelOptPlanner relOptPlanner, RelNode relNode, RelTraitSet relTraitSet, List<RelOptMaterialization> relOptMaterializationList, List<RelOptLattice> relOptLatticeList) { for (Program program : programs) { relNode = program.run(relOptPlanner, relNode, relTraitSet, relOptMaterializationList, relOptLatticeList); logger.debug("After running " + program + ":\n" + RelOptUtil.toString(relNode)); } return relNode; }
Example 9
Source File: PlannerImpl.java From calcite with Apache License 2.0 | 5 votes |
public RelNode transform(int ruleSetIndex, RelTraitSet requiredOutputTraits, RelNode rel) { ensure(State.STATE_5_CONVERTED); rel.getCluster().setMetadataProvider( new CachingRelMetadataProvider( rel.getCluster().getMetadataProvider(), rel.getCluster().getPlanner())); Program program = programs.get(ruleSetIndex); return program.run(planner, rel, requiredOutputTraits, ImmutableList.of(), ImmutableList.of()); }
Example 10
Source File: ToLogicalConverterTest.java From calcite with Apache License 2.0 | 5 votes |
private static RelNode toPhysical(RelNode rel) { final RelOptPlanner planner = rel.getCluster().getPlanner(); planner.clear(); for (RelOptRule rule : RULE_SET) { planner.addRule(rule); } final Program program = Programs.of(RuleSets.ofList(planner.getRules())); return program.run(planner, rel, rel.getTraitSet().replace(EnumerableConvention.INSTANCE), ImmutableList.of(), ImmutableList.of()); }
Example 11
Source File: SqlHintsConverterTest.java From calcite with Apache License 2.0 | 5 votes |
@Test void testHintsPropagationInVolcanoPlannerRules() { final String sql = "select /*+ use_hash_join(r, s), use_hash_join(emp, dept) */\n" + "ename, job, sal, dept.name\n" + "from emp join dept on emp.deptno = dept.deptno"; RelOptPlanner planner = new VolcanoPlanner(); planner.addRelTraitDef(ConventionTraitDef.INSTANCE); Tester tester1 = tester.withDecorrelation(true) .withClusterFactory( relOptCluster -> RelOptCluster.create(planner, relOptCluster.getRexBuilder())); final RelNode rel = tester1.convertSqlToRel(sql).rel; final RelHint hint = RelHint.builder("USE_HASH_JOIN") .inheritPath(0) .hintOption("EMP") .hintOption("DEPT") .build(); // Validate Volcano planner. RuleSet ruleSet = RuleSets.ofList( new MockEnumerableJoinRule(hint), // Rule to validate the hint. FilterProjectTransposeRule.INSTANCE, FilterMergeRule.INSTANCE, ProjectMergeRule.INSTANCE, EnumerableRules.ENUMERABLE_JOIN_RULE, EnumerableRules.ENUMERABLE_PROJECT_RULE, EnumerableRules.ENUMERABLE_FILTER_RULE, EnumerableRules.ENUMERABLE_SORT_RULE, EnumerableRules.ENUMERABLE_LIMIT_RULE, EnumerableRules.ENUMERABLE_TABLE_SCAN_RULE); Program program = Programs.of(ruleSet); RelTraitSet toTraits = rel .getCluster() .traitSet() .replace(EnumerableConvention.INSTANCE); program.run(planner, rel, toTraits, Collections.emptyList(), Collections.emptyList()); }
Example 12
Source File: EnumerableLimitRuleTest.java From calcite with Apache License 2.0 | 4 votes |
/** Test case for * <a href="https://issues.apache.org/jira/browse/CALCITE-2941">[CALCITE-2941] * EnumerableLimitRule on Sort with no collation creates EnumerableLimit with * wrong traitSet and cluster</a>. */ @Test void enumerableLimitOnEmptySort() throws Exception { RuleSet prepareRules = RuleSets.ofList( EnumerableRules.ENUMERABLE_FILTER_RULE, EnumerableRules.ENUMERABLE_SORT_RULE, EnumerableRules.ENUMERABLE_LIMIT_RULE, EnumerableRules.ENUMERABLE_TABLE_SCAN_RULE); SchemaPlus rootSchema = Frameworks.createRootSchema(true); SchemaPlus defSchema = rootSchema.add("hr", new HrClusteredSchema()); FrameworkConfig config = Frameworks.newConfigBuilder() .parserConfig(SqlParser.Config.DEFAULT) .defaultSchema(defSchema) .traitDefs(ConventionTraitDef.INSTANCE, RelCollationTraitDef.INSTANCE) .programs(Programs.of(prepareRules)) .build(); RelBuilder builder = RelBuilder.create(config); RelNode planBefore = builder .scan("hr", "emps") .sort(builder.field(0)) // will produce collation [0] in the plan .filter( builder.notEquals( builder.field(0), builder.literal(100))) .limit(1, 5) // force a limit inside an "empty" Sort (with no collation) .build(); RelTraitSet desiredTraits = planBefore.getTraitSet() .replace(EnumerableConvention.INSTANCE); Program program = Programs.of(prepareRules); RelNode planAfter = program.run(planBefore.getCluster().getPlanner(), planBefore, desiredTraits, ImmutableList.of(), ImmutableList.of()); // verify that the collation [0] is not lost in the final plan final RelCollation collation = planAfter.getTraitSet().getTrait(RelCollationTraitDef.INSTANCE); assertThat(collation, notNullValue()); final List<RelFieldCollation> fieldCollationList = collation.getFieldCollations(); assertThat(fieldCollationList, notNullValue()); assertThat(fieldCollationList.size(), is(1)); assertThat(fieldCollationList.get(0).getFieldIndex(), is(0)); }