ayushtkn commented on code in PR #6106: URL: https://github.com/apache/hive/pull/6106#discussion_r2391317061
########## iceberg/iceberg-handler/src/test/queries/positive/iceberg_add_complex_column.q: ########## @@ -0,0 +1,15 @@ +CREATE TABLE t_complex (id INT) STORED BY ICEBERG; + +INSERT INTO t_complex (id) VALUES (1); + +ALTER TABLE t_complex ADD COLUMNS (col1 STRUCT<x:INT, y:INT>); + +SELECT * FROM t_complex ORDER BY id; Review Comment: added -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
