atallahade opened a new issue, #4642: URL: https://github.com/apache/paimon/issues/4642
### Search before asking - [X] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version a389af62b7a254ffabb91a9e43dfe8a90695e899 ### Compute Engine Flink ### Minimal reproduce step Use flink-sql.sh and create this table in a Paimon catalog: ``` CREATE TABLE my_table (my_row ROW<my_field INT 'my description'>); SHOW CREATE TABLE my_table; CREATE TABLE `my_catalog`.`my_database`.`my_table` ( `my_row` ROW<`my_field` INT> ) WITH ( 'path' = 'file:/paimon_data/my_database.db/my_table' ) ``` ### What doesn't meet your expectations? Descriptions of row fields are not persisted when using Flink SQL. This is a problem when manually creating tables for the [KafkaSyncTableAction](https://paimon.apache.org/docs/master/api/java/org/apache/paimon/flink/action/cdc/kafka/KafkaSyncTableAction) which uses descriptions on row fields, causing schema mismatches. ### Anything else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- 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]
