We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f98373 commit d899471Copy full SHA for d899471
flink-table/flink-table-api-java/src/test/java/org/apache/flink/table/test/program/SinkTestStep.java
@@ -142,12 +142,11 @@ public List<String> getExpectedAsStrings() {
142
}
143
144
public List<String> getExpectedMaterializedResultsAsStrings() {
145
-
146
if (expectedMaterializedStrings != null) {
147
return expectedMaterializedStrings;
148
149
if (expectedMaterializedRows != null) {
150
- if (deduplicatedFieldIndices == null) {
+ if (deduplicatedFieldIndices != null) {
151
throw new UnsupportedOperationException(
152
"Unsupported to deduplicate data for materialized rows");
153
0 commit comments