kasakrisz commented on code in PR #4864: URL: https://github.com/apache/hive/pull/4864#discussion_r1387693185
########## ql/src/test/queries/clientpositive/auto_sortmerge_join_17.q: ########## @@ -0,0 +1,22 @@ +CREATE TABLE tbl1_n5(key int, value string) CLUSTERED BY (key) SORTED BY (key) INTO 2 BUCKETS; + +insert into tbl1_n5(key, value) +values +(0, 'val_0'), +(2, 'val_2'), +(9, 'val_9'); + +set hive.optimize.semijoin.conversion = false; + +explain Review Comment: There are lots of q tests for SMB joins with group by. Example: https://github.com/apache/hive/blob/2eef89b5b6f350c2c9a72499c3253760df20a328/ql/src/test/results/clientpositive/llap/limit_pushdown.q.out#L1108-L1150 -- 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]
