snuyanzin commented on code in PR #26643:
URL: https://github.com/apache/flink/pull/26643#discussion_r2132199355
##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/plan/nodes/exec/common/JoinTestPrograms.java:
##########
@@ -479,21 +479,17 @@ public class JoinTestPrograms {
SourceTestStep.newBuilder("source_t2")
.addSchema("d INTEGER", "e BIGINT", "f
STRING")
.producedBeforeRestore(Row.of(1, 2L,
"3"))
- .producedAfterRestore(Row.of(11, 22L,
"33"))
.build())
.setupTableSource(
SourceTestStep.newBuilder("source_t3")
.addSchema("i INTEGER", "j BIGINT", "k
STRING")
.producedBeforeRestore(Row.of(1, 2L,
"3"))
- .producedAfterRestore(Row.of(111,
222L, "333"))
.build())
.setupTableSink(
SinkTestStep.newBuilder("sink_t")
.addSchema("b BIGINT")
.consumedBeforeRestore("+I[2]")
- .consumedAfterRestore(
- "-D[2]", "+I[2]", "+I[34]",
"-D[2]", "-D[34]",
- "+I[2]", "+I[34]")
Review Comment:
yes, it is a good question, it seems it comes from restore, I updated test
(removed restore part) and those disappeared
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]