Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173860901 --- Diff: flink-connectors/flink-connector-kafka-base/src/test/java/org/apache/flink/streaming/connectors/kafka/KafkaJsonTableSourceFactoryTestBase.java --- @@ -89,9 +94,10 @@ private void testTableSource(FormatDescriptor format) { // construct table source using a builder final Map<String, String> tableJsonMapping = new HashMap<>(); + tableJsonMapping.put("name", "name"); --- End diff -- This "name" to "name" mapping should not exist since we've already explicitly defined the "fruit-name" to "name" mapping.
---