You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd confine that check to only tables that are also created from the same file. So if you have a separate sq file which just queries and does no table creation you're fine.
So it basically checks if in that particular file there's a table creation and you're querying from a different table using FROM, spit out a warning. JOIN on other tables should be allowed.
Description
I've got the following tables:
Coachee.sql:
Mandator.sql:
In Coachee.sql, I had the following statement:
I'd like to have a warning here as I was just copy pasting the same statement from Mandator.sql into Coachee.sql but forgot to change the statement:
Ideally this is done when interpreting the sq file so this is also exposed for the Gradle Plugin.
The text was updated successfully, but these errors were encountered: