MOBIN-F commented on code in PR #3791: URL: https://github.com/apache/flink-cdc/pull/3791#discussion_r1977027249
########## flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-kafka/pom.xml: ########## @@ -101,6 +120,9 @@ limitations under the License. <relocation> <pattern>org.apache.kafka</pattern> <shadedPattern>org.apache.flink.kafka.shaded.org.apache.kafka</shadedPattern> + <excludes> + <exclude>org/apache/kafka/connect/data/**</exclude> + </excludes> Review Comment: for example: Debezium native schema json is as follows: ``` { "type":"bytes", "optional":true, "name":"org.apache.kafka.connect.data.Decimal", ... }, "field":"_decimal" } ``` Since org.apache.kafka.connect.data.Decimal in the org.apache.kafka package, if there is no \<exclude\>org/apache/kafka/connect/data/**\</exclude\>, it will become as follows: ``` { "type":"bytes", "optional":true, "name":"name":"org.apache.flink.cdc.connectors.shaded.org.apache.kafka.connect.data.Decimal", ... "field":"_decimal" } ``` -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org