deniskuzZ commented on code in PR #6106:
URL: https://github.com/apache/hive/pull/6106#discussion_r2388287205


##########
iceberg/iceberg-handler/src/test/queries/positive/iceberg_add_complex_column.q:
##########
@@ -0,0 +1,23 @@
+CREATE TABLE t_struct (id INT) STORED BY ICEBERG;
+
+INSERT INTO t_struct (id) VALUES (1);
+
+ALTER TABLE t_struct ADD COLUMNS (point STRUCT<x:INT, y:INT>);
+
+SELECT * FROM t_struct ORDER BY id;
+
+CREATE TABLE t_map (id INT) STORED BY ICEBERG;

Review Comment:
   why create new table ?



-- 
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]

Reply via email to