soumyakanti3578 commented on code in PR #5524:
URL: https://github.com/apache/hive/pull/5524#discussion_r1822978523


##########
ql/src/test/queries/clientpositive/prune_empty_table.q:
##########
@@ -0,0 +1,24 @@
+set hive.tez.cartesian-product.enabled=true;
+
+create table c (a1 int) stored as orc;
+create table tmp1 (a int) stored as orc;
+create table tmp2 (a int) stored as orc;
+
+insert into table c values (3);
+insert into table tmp1 values (3);
+
+explain cbo
+with
+first as (
+select a1 from c where a1 = 3
+),

Review Comment:
   I will simplify the test and also add another query without explain.



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