deniskuzZ commented on code in PR #4185: URL: https://github.com/apache/hive/pull/4185#discussion_r1162658514
########## iceberg/iceberg-handler/src/test/queries/positive/iceberg_rename.q: ########## @@ -0,0 +1,62 @@ + +-- create a v1 table +create table icev1 (id int, name string) Stored by Iceberg; + +-- insert some values +insert into icev1 values (1, 'SSD'),(2, 'RAM'); + +select * from icev1 order by id; + +-- do the rename + +alter table icev1 rename to icev1renamed; Review Comment: should we add `explain` for `alter table rename` as well? -- 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]
