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
Since we recommend alter files should be in a separate file, we need a way to have a target which doesn't result in an object (for files with ALTER) statements
The text was updated successfully, but these errors were encountered:
@edmundreinhardt Right now, no. ALTER statements can create circular deps very easily.
For example, two files:
CREATE TABLE DEPARTMENT, with an ALTER which adds a reference to table EMPLOYEE
CREATE TABLE EMPLOYEE with an ALTER which adds a reference to table DEPARTMENT
This circular dep is bad. Moving those alters to separate files will allow us to resolve this issue.
worksofliam
changed the title
Better handle files which have just ALTER statements in them
Improve handling of files which have just ALTER statements in them
Nov 17, 2023
Since we recommend alter files should be in a separate file, we need a way to have a target which doesn't result in an object (for files with
ALTER
) statementsThe text was updated successfully, but these errors were encountered: