difin commented on code in PR #5889:
URL: https://github.com/apache/hive/pull/5889#discussion_r2166744245


##########
iceberg/iceberg-handler/src/test/queries/positive/iceberg_branches_and_tags.q:
##########
@@ -0,0 +1,30 @@
+-- SORT_QUERY_RESULTS
+
+create table ice01 (id int) stored by iceberg;
+insert into ice01 values (1), (2), (3), (4);
+
+--- create branch
+create branch branch1 FROM ice01;
+
+-- insert some values in branch1
+insert into default.ice01.branch_branch1 values (5), (6);
+select * from default.ice01.branch_branch1;
+
+-- replace branch
+create or replace branch test_branch_1 FROM ice01;;

Review Comment:
   NIT: extra semicolon



-- 
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: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org
For additional commands, e-mail: gitbox-h...@hive.apache.org

Reply via email to