ryukobayashi commented on code in PR #4999:
URL: https://github.com/apache/hive/pull/4999#discussion_r1452093018


##########
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:
   @zhangbutao I noticed that the query I tested and the query in the qfile 
were different and fixed it. I ran it on master, but before the fix, an 
[HIVE-26713](https://issues.apache.org/jira/browse/HIVE-26713) exception occurs.



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