pawankukreja01 commented on issue #3747: URL: https://github.com/apache/iceberg/issues/3747#issuecomment-1763511414
Based on the error message you provided, it seems like the column idd has an incompatible type with the existing columns in their respective positions. To add a column to an existing table, you can use the `ALTER TABLE` statement. Here’s an example of how to add a column to a table: `ALTER TABLE table_name ADD column_name datatype;` In your case, you can try running the following SQL command to add a new column named `idd1` of type `bigint` with a comment of `test2` after the `age` column: `ALTER TABLE test.czm33 ADD COLUMN idd1 BIGINT COMMENT 'test2' AFTER age;` -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org