-
-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Labels
Description
./bin/lint-query --query "SELECT * FROM table1 JOIN (select * from table2) ON some_column = some_other_column"
This passes the linter, but should fail because the subquery does not have an alias. Running this query in MySQL will return the error Every derived table must have its own alias.
Reactions are currently unavailable