comphead commented on code in PR #8964: URL: https://github.com/apache/arrow-datafusion/pull/8964#discussion_r1466837188
########## 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: Please add a test description ########## 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: ditto -- 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]
