thswlsqls opened a new pull request, #8641: URL: https://github.com/apache/paimon/pull/8641
### Purpose fix #8640 - `HiveSchema.extract()` read the Hive column-name delimiter with a misspelled key `"column.name.delimite"` (missing trailing `r`), so a custom `column.name.delimiter` was ignored and column names were always split on the default comma. - Correct the key to `"column.name.delimiter"`, matching Hive's `serdeConstants.COLUMN_NAME_DELIMITER`. - Completes merged PR #8545, which fixed the same key in the sibling `PaimonRecordReader.getHiveColumns()` (`mapred/PaimonRecordReader.java`) but missed `HiveSchema`. ### Tests - Added `HiveTableSchemaTest#testExtractSchemaWithCustomColumnNameDelimiter` splitting `a;b;c` with delimiter `;` and asserting field names `[a, b, c]`; fails before the fix (single field), passes after. - `mvn -pl paimon-hive/paimon-hive-connector-common test` passed. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
