alamb commented on code in PR #8964:
URL: https://github.com/apache/arrow-datafusion/pull/8964#discussion_r1466894596


##########
datafusion/sqllogictest/test_files/cte.slt:
##########
@@ -19,3 +19,20 @@ query II
 select * from (WITH source AS (select 1 as e) SELECT * FROM source) t1,   
(WITH source AS (select 1 as e) SELECT * FROM source) t2
 ----
 1 1
+
+query I

Review Comment:
   ```suggestion
   # Ensure table aliases can be case sensitive
   query I
   ```



##########
datafusion/sqllogictest/test_files/cte.slt:
##########
@@ -19,3 +19,20 @@ query II
 select * from (WITH source AS (select 1 as e) SELECT * FROM source) t1,   
(WITH source AS (select 1 as e) SELECT * FROM source) t2
 ----
 1 1
+
+query I
+WITH "T" AS (SELECT 1 a) SELECT "T".* FROM "T"
+----
+1
+
+query TT

Review Comment:
   ```suggestion
   # Ensure table aliases can be case sensitive
   query TT
   ```



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

Reply via email to