pvary commented on code in PR #3305:
URL: https://github.com/apache/hive/pull/3305#discussion_r879114018


##########
ql/src/test/queries/clientpositive/udf_in_binary.q:
##########
@@ -0,0 +1,6 @@
+create table test_binary(data_col timestamp, binary_col binary) partitioned by 
(ts string);
+insert into test_binary partition(ts='202204200000') values ('2022-04-20 
00:00:00.0', 'a'),('2022-04-20 00:00:00.0', 'b'), ('2022-04-20 00:00:00.0', 
'c');
+select * from test_binary where ts='202204200000' and binary_col = unhex('61');
+select * from test_binary where ts='202204200000' and binary_col between 
unhex('61') and unhex('62');
+select * from test_binary where binary_col = unhex('61') or binary_col = 
unhex('62');
+select * from test_binary where ts='202204200000' and (binary_col = 
unhex('61') or binary_col = unhex('62'));

Review Comment:
   Good idea!
   Added



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

Reply via email to