zhangjun0x01 commented on code in PR #1026: URL: https://github.com/apache/incubator-paimon/pull/1026#discussion_r1177298218
########## paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/cdc/mysql/MySqlDebeziumJsonEventParser.java: ########## @@ -200,8 +203,10 @@ public List<CdcRecord> getRecords() { } private Map<String, String> extractRow(JsonNode recordRow) { - Map<String, String> recordMap = - objectMapper.convertValue(recordRow, new TypeReference<Map<String, String>>() {}); + + // the geometry,point type can not be converted to string, so we convert it to Object first. + Map<String, Object> recordMap = Review Comment: I update all comments . -- 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...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org