Class CommonExecCalc

    • Field Detail

      • projection

        protected final List<org.apache.calcite.rex.RexNode> projection
      • condition

        @Nullable
        protected final org.apache.calcite.rex.RexNode condition
    • Constructor Detail

      • CommonExecCalc

        protected CommonExecCalc​(int id,
                                 ExecNodeContext context,
                                 ReadableConfig persistedConfig,
                                 List<org.apache.calcite.rex.RexNode> projection,
                                 @Nullable
                                 org.apache.calcite.rex.RexNode condition,
                                 Class<?> operatorBaseClass,
                                 boolean retainHeader,
                                 List<InputProperty> inputProperties,
                                 RowType outputType,
                                 String description)
    • Method Detail

      • translateToPlanInternal

        protected Transformation<RowData> translateToPlanInternal​(org.apache.flink.table.planner.delegation.PlannerBase planner,
                                                                  ExecNodeConfig config)
        Description copied from class: ExecNodeBase
        Internal method, translates this node into a Flink operator.
        Specified by:
        translateToPlanInternal in class ExecNodeBase<RowData>
        Parameters:
        planner - The planner.
        config - per-ExecNode configuration that contains the merged configuration from various layers which all the nodes implementing this method should use, instead of retrieving configuration from the planner. For more details check ExecNodeConfig.