goldmedal commented on code in PR #15334: URL: https://github.com/apache/datafusion/pull/15334#discussion_r2009971193
########## datafusion/sqllogictest/test_files/limit.slt: ########## @@ -723,14 +723,14 @@ statement ok create table testSubQueryLimit (a int, b int) as values (1,2), (2,3), (3,4); query IIII -select * from testSubQueryLimit as t1 join (select * from testSubQueryLimit limit 1) limit 10; +select * from testSubQueryLimit as t1, (select * from testSubQueryLimit limit 1) limit 10; Review Comment: I thought that It was an invalid SQL mentioned by #13486. But indeed, we can modify it after #13486 is fixed. I revert this change here. -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org