bvarghese1 commented on code in PR #23728:
URL: https://github.com/apache/flink/pull/23728#discussion_r1402827336
##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/plan/nodes/exec/testutils/RestoreTestBase.java:
##########
@@ -81,9 +81,22 @@
public abstract class RestoreTestBase implements TableTestProgramRunner {
private final Class<? extends ExecNode> execNodeUnderTest;
+ private final AfterRestoreState afterRestoreState;
protected RestoreTestBase(Class<? extends ExecNode> execNodeUnderTest) {
this.execNodeUnderTest = execNodeUnderTest;
+ this.afterRestoreState = AfterRestoreState.FINITE_AFTER_RESTORE;
+ }
+
+ protected RestoreTestBase(
+ Class<? extends ExecNode> execNodeUnderTest, AfterRestoreState
state) {
+ this.execNodeUnderTest = execNodeUnderTest;
+ this.afterRestoreState = state;
+ }
+
+ protected enum AfterRestoreState {
Review Comment:
https://github.com/apache/flink/pull/23728/files#diff-a815488ad1ad3ed866421e69b53f1c0c07cbcf16dac7e6fe357f3bb87d2e20baR101
--
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]