twalthr commented on a change in pull request #13910:
URL: https://github.com/apache/flink/pull/13910#discussion_r518724076
##########
File path:
flink-connectors/flink-connector-kafka/src/test/java/org/apache/flink/streaming/connectors/kafka/table/KafkaChangelogTableITCase.java
##########
@@ -131,7 +133,8 @@ public void testKafkaDebeziumChangelogSource() throws
Exception {
tEnv.executeSql(sourceDDL);
tEnv.executeSql(sinkDDL);
TableResult tableResult = tEnv.executeSql(
- "INSERT INTO sink SELECT name, SUM(weight) FROM
debezium_source GROUP BY name");
+ "INSERT INTO sink SELECT FIRST_VALUE(origin), name,
SUM(weight) "
+ + "FROM debezium_source GROUP BY name");
Review comment:
Good suggestion. I found a bug.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]