Skip to content

Commit 776c85d

Browse files
committed
[SPARK-57402][SQL] Rename applyChanges local to autoCdcInto in visitCreateFlowAutoCdc
Rename the local variable holding the AutoCdcIntoCommand from applyChanges to autoCdcInto to match the command type. No behavior change. Co-authored-by: Isaac
1 parent 14ec11a commit 776c85d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sql/core/src/main/scala/org/apache/spark/sql/execution/SparkSqlParser.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1576,10 +1576,10 @@ class SparkSqlAstBuilder extends AstBuilder {
15761576
val flowHeaderCtx = ctx.createPipelineFlowHeader()
15771577
val ident = withIdentClause(flowHeaderCtx.flowName, UnresolvedIdentifier(_))
15781578
val commentOpt = Option(flowHeaderCtx.commentSpec()).map(visitCommentSpec)
1579-
val applyChanges = buildAutoCdcIntoCommand(ctx.autoCdcCommand())
1579+
val autoCdcInto = buildAutoCdcIntoCommand(ctx.autoCdcCommand())
15801580
CreateFlowCommand(
15811581
name = ident,
1582-
flowOperation = applyChanges,
1582+
flowOperation = autoCdcInto,
15831583
comment = commentOpt
15841584
)
15851585
}

0 commit comments

Comments
 (0)