zhangbutao commented on code in PR #4999:
URL: https://github.com/apache/hive/pull/4999#discussion_r1451547910
##########
ql/src/test/queries/clientpositive/like_control_characters.q:
##########
@@ -0,0 +1,15 @@
+set hive.mapred.mode=nonstrict;
+set hive.explain.user=false;
+set hive.vectorized.execution.enabled=true;
+
+create temporary table foo (col string) stored as orc;
+create temporary table bar (col binary) stored as orc;
+
+-- SORT_QUERY_RESULTS
+
+INSERT INTO bar values(unhex('6161-16161'));
+INSERT INTO foo SELECT col FROM bar;
+
+explain select col, count(*) from foo where col like '%bc%' group by col;
+select col, count(*) from foo where col like '%bc%' group by col;
Review Comment:
I still couldn't reproduce the exception as you described in
[HIVE-26713](https://issues.apache.org/jira/browse/HIVE-26713) on master branch.
Did you try to test on the master branch?
--
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]