Search in sources :

Example 1 with BatchPhysicalLocalHashAggregate

use of org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate in project flink by apache.

the class PushLocalHashAggWithCalcIntoScanRule method matches.

@Override
public boolean matches(RelOptRuleCall call) {
    BatchPhysicalLocalHashAggregate localHashAgg = call.rel(1);
    BatchPhysicalCalc calc = call.rel(2);
    BatchPhysicalTableSourceScan tableSourceScan = call.rel(3);
    return isInputRefOnly(calc) && isProjectionNotPushedDown(tableSourceScan) && canPushDown(call, localHashAgg, tableSourceScan);
}
Also used : BatchPhysicalLocalHashAggregate(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate) BatchPhysicalCalc(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalCalc) BatchPhysicalTableSourceScan(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalTableSourceScan)

Example 2 with BatchPhysicalLocalHashAggregate

use of org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate in project flink by apache.

the class PushLocalHashAggWithCalcIntoScanRule method onMatch.

@Override
public void onMatch(RelOptRuleCall call) {
    BatchPhysicalLocalHashAggregate localHashAgg = call.rel(1);
    BatchPhysicalCalc calc = call.rel(2);
    BatchPhysicalTableSourceScan oldScan = call.rel(3);
    int[] calcRefFields = getRefFiledIndex(calc);
    pushLocalAggregateIntoScan(call, localHashAgg, oldScan, calcRefFields);
}
Also used : BatchPhysicalLocalHashAggregate(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate) BatchPhysicalCalc(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalCalc) BatchPhysicalTableSourceScan(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalTableSourceScan)

Example 3 with BatchPhysicalLocalHashAggregate

use of org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate in project flink by apache.

the class PushLocalHashAggIntoScanRule method matches.

@Override
public boolean matches(RelOptRuleCall call) {
    BatchPhysicalLocalHashAggregate localAggregate = call.rel(1);
    BatchPhysicalTableSourceScan tableSourceScan = call.rel(2);
    return canPushDown(call, localAggregate, tableSourceScan);
}
Also used : BatchPhysicalLocalHashAggregate(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate) BatchPhysicalTableSourceScan(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalTableSourceScan)

Example 4 with BatchPhysicalLocalHashAggregate

use of org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate in project flink by apache.

the class PushLocalHashAggIntoScanRule method onMatch.

@Override
public void onMatch(RelOptRuleCall call) {
    BatchPhysicalLocalHashAggregate localHashAgg = call.rel(1);
    BatchPhysicalTableSourceScan oldScan = call.rel(2);
    pushLocalAggregateIntoScan(call, localHashAgg, oldScan);
}
Also used : BatchPhysicalLocalHashAggregate(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate) BatchPhysicalTableSourceScan(org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalTableSourceScan)

Aggregations

BatchPhysicalLocalHashAggregate (org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalLocalHashAggregate)4 BatchPhysicalTableSourceScan (org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalTableSourceScan)4 BatchPhysicalCalc (org.apache.flink.table.planner.plan.nodes.physical.batch.BatchPhysicalCalc)2