JingsongLi commented on code in PR #5829: URL: https://github.com/apache/paimon/pull/5829#discussion_r2179912279
########## paimon-hive/paimon-hive-catalog/src/main/java/org/apache/paimon/hive/HiveTableUtils.java: ########## @@ -76,10 +77,13 @@ public static Schema tryToFormatSchema(Table hiveTable) { format = Format.JSON; } else { format = Format.CSV; - // hive default field delimiter is '\u0001' - options.set( - FIELD_DELIMITER, - serdeInfo.getParameters().getOrDefault(FIELD_DELIM, "\u0001")); + if (!options.contains(FIELD_DELIMITER)) { Review Comment: Revert here? We just trust hive `FIELD_DELIM `. -- 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