Copilot commented on code in PR #6563:
URL: https://github.com/apache/hive/pull/6563#discussion_r3502904992
##########
ql/src/test/queries/clientpositive/show_create_table_tab_view.q:
##########
@@ -0,0 +1,35 @@
+CREATE TABLE showcrt_tab_src (val1 string COMMENT 'val 1',
+ val2 string COMMENT 'val
+ 2',
+ val3 string);
+INSERT INTO showcrt_tab_src VALUES ('a1 ', 'b1', 'c1');
+
+-- Create view from source table with tab in the WHERE clause
+CREATE VIEW showcrt_tab_src_v AS SELECT * FROM showcrt_tab_src
+ WHERE val1 = 'a1 '
+ AND val2 = 'b1';
+SHOW CREATE TABLE showcrt_tab_src_v;
+
+-- Pattern matching with tabs still need to return correct results
Review Comment:
Grammar in the comment is off: “tabs still need” should be “tabs still
needs” (or rephrase).
--
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]