thomasrebele commented on code in PR #6352: URL: https://github.com/apache/hive/pull/6352#discussion_r2931918088
########## ql/src/test/queries/clientpositive/kryo_expr_children.q: ########## @@ -0,0 +1,9 @@ +set hive.cbo.enable=false; + +CREATE TABLE tab(attr varchar(5)); + +-- test case for HIVE-29488 +select * from tab t1 left join tab t2 +on t1.attr = t2.attr and t2.attr in ( trim(t1.attr), '*'); + +DROP TABLE tab; Review Comment: I added it after seeing such a DROP TABLE statement in another q file. I'll drop it (the statement). -- 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]
