Skip to content

Commit

Permalink
Update Flink classes
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed Jan 31, 2024
1 parent fe25ac0 commit 5a195af
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,12 @@ object FlinkLogicalRelFactories {

/** Implementation of [[ProjectFactory]] that returns a [[FlinkLogicalCalc]]. */
class ProjectFactoryImpl extends ProjectFactory {
def createProject(
override def createProject(
input: RelNode,
hints: util.List[RelHint],
childExprs: util.List[_ <: RexNode],
fieldNames: util.List[_ <: String]): RelNode = {
fieldNames: util.List[_ <: String],
variablesSet: util.Set[CorrelationId]): RelNode = {
val rexBuilder = input.getCluster.getRexBuilder
val inputRowType = input.getRowType
val programBuilder = new RexProgramBuilder(inputRowType, rexBuilder)
Expand Down

0 comments on commit 5a195af

Please sign in to comment.