-
Notifications
You must be signed in to change notification settings - Fork 55
fix: recreate dependent FKs when a referenced unique/PK constraint is replaced (#439) #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
592ce64
fix: recreate dependent FKs when a referenced unique/PK constraint is…
tianzhou 4b68e99
fix: handle changed FKs and new-table FKs bound to replaced unique/PK…
tianzhou 2827224
test: merge issue 439 fixtures into a single test case
tianzhou ab80c02
refactor: simplify FK recreation for replaced constraints
tianzhou b8bcb31
Potential fix for pull request finding
tianzhou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
testdata/diff/dependency/issue_439_unique_to_pk_fk_dependent/diff.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| CREATE TABLE IF NOT EXISTS case_files ( | ||
| id integer, | ||
| case_id integer, | ||
| CONSTRAINT case_files_pkey PRIMARY KEY (id) | ||
| ); | ||
|
|
||
| ALTER TABLE case_comments DROP CONSTRAINT case_comments_case_id_fkey; | ||
|
|
||
| ALTER TABLE case_notes DROP CONSTRAINT case_notes_case_id_fkey; | ||
|
|
||
| ALTER TABLE case_tags DROP CONSTRAINT case_tags_case_id_fkey; | ||
|
|
||
| ALTER TABLE cases DROP CONSTRAINT cases_id_key; | ||
|
|
||
| ALTER TABLE cases | ||
| ADD CONSTRAINT cases_pkey PRIMARY KEY (id); | ||
|
|
||
| ALTER TABLE case_comments | ||
| ADD CONSTRAINT case_comments_case_id_fkey FOREIGN KEY (case_id) REFERENCES cases (id) ON DELETE CASCADE; | ||
|
|
||
| ALTER TABLE case_files | ||
| ADD CONSTRAINT case_files_case_id_fkey FOREIGN KEY (case_id) REFERENCES cases (id); | ||
|
|
||
| ALTER TABLE case_notes | ||
| ADD CONSTRAINT case_notes_case_id_fkey FOREIGN KEY (case_id) REFERENCES cases (id); | ||
|
|
||
| ALTER TABLE case_tags | ||
| ADD CONSTRAINT case_tags_case_id_fkey FOREIGN KEY (case_id) REFERENCES cases (id) ON DELETE CASCADE; |
28 changes: 28 additions & 0 deletions
28
testdata/diff/dependency/issue_439_unique_to_pk_fk_dependent/new.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| CREATE TABLE cases ( | ||
| id integer PRIMARY KEY, | ||
| name text | ||
| ); | ||
|
|
||
| -- unchanged FK | ||
| CREATE TABLE case_notes ( | ||
| id integer PRIMARY KEY, | ||
| case_id integer CONSTRAINT case_notes_case_id_fkey REFERENCES cases (id) | ||
| ); | ||
|
|
||
| -- unchanged FK with ON DELETE CASCADE (clause must survive recreation) | ||
| CREATE TABLE case_tags ( | ||
| id integer PRIMARY KEY, | ||
| case_id integer CONSTRAINT case_tags_case_id_fkey REFERENCES cases (id) ON DELETE CASCADE | ||
| ); | ||
|
|
||
| -- FK that itself changes in the same migration (gains ON DELETE CASCADE) | ||
| CREATE TABLE case_comments ( | ||
| id integer PRIMARY KEY, | ||
| case_id integer CONSTRAINT case_comments_case_id_fkey REFERENCES cases (id) ON DELETE CASCADE | ||
| ); | ||
|
|
||
| -- newly added table whose FK references the replaced constraint | ||
| CREATE TABLE case_files ( | ||
| id integer PRIMARY KEY, | ||
| case_id integer CONSTRAINT case_files_case_id_fkey REFERENCES cases (id) | ||
| ); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.