kasakrisz commented on code in PR #4864: URL: https://github.com/apache/hive/pull/4864#discussion_r1387687042
########## 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; Review Comment: It is not necessary for the repro. I kept it because I wanted to see of the issue can be reproduced with inner join too. Removed from the final version. -- 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]
