dawidwys commented on code in PR #27502:
URL: https://github.com/apache/flink/pull/27502#discussion_r2759928749
##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/plan/nodes/exec/stream/SinkSemanticTests.java:
##########
@@ -18,21 +18,48 @@
package org.apache.flink.table.planner.plan.nodes.exec.stream;
+import org.apache.flink.table.api.TableEnvironment;
import
org.apache.flink.table.planner.plan.nodes.exec.testutils.SemanticTestBase;
+import org.apache.flink.table.test.program.SinkTestStep;
import org.apache.flink.table.test.program.TableTestProgram;
+import org.apache.flink.table.test.program.TestStep;
+import org.apache.flink.table.test.program.TestStep.TestKind;
+import java.util.EnumSet;
import java.util.List;
+import java.util.Map;
/** Semantic tests for {@link StreamExecSink}. */
public class SinkSemanticTests extends SemanticTestBase {
+ @Override
+ public EnumSet<TestKind> supportedSetupSteps() {
+ EnumSet<TestKind> steps = super.supportedSetupSteps();
Review Comment:
The failing tests sink's don't have data. To be honest I am not sure how it
worked before this PR 🤔
--
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]