[X] I searched in the issues and found nothing similar.
Motivation
I ran Flink 1.17 cluster and tested out Paimon catalog DDL scenarios, and add/drop column statements suceeded without exceptions
ALTER TABLE my_table ADD (
ts AS TO_TIMESTAMP(log_ts) AFTER log_ts
);
I noticed that SchemaChangeITCase missed the altering columns case, so I tried to add corresponding test cases to SchemaChangeITCase, and got an exception:
I noticed that in Flink 1.15 and 1.16,SqlToOperationConverter::convertAlterTable does not support add/drop columns
Altering table add/drop columns is a new feature introduced in Flink 1.17. Therefore, it's better to add tests in paimon-flink-1.17
Solution
Add the corresponding tests that cover add column, drop column and modify column.
Search before asking
Motivation
Altering table add/drop columns is a new feature introduced in Flink 1.17. Therefore, it's better to add tests in paimon-flink-1.17
Solution
Add the corresponding tests that cover add column, drop column and modify column.
Anything else?
No response
Are you willing to submit a PR?