forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitefd9366
committed
Fix droppability of constraints upon partition detach
We were failing to set conislocal correctly for constraints inpartitions after partition detach, leading to those constraints becomingundroppable. Fix by setting the flag correctly. Existing databasesmight contain constraints with the conislocal wrongly set to false, forpartitions that were detached; this situation should be fixable byapplying an UPDATE on pg_constraint to set conislocal true. Thisproblem should otherwise be innocuous and should disappear across adump/restore or pg_upgrade.Secondarily, when constraint drop was attempted in a partitioned table,ATExecDropConstraint would try to recurse to partitions after doingperformDeletion() of the constraint in the partitioned table itself; butsince the constraint in the partitions are dropped by the initial callof performDeletion() (because of following dependencies), the recursionstep would fail since it would not find the constraint, causing thewhole operation to fail. Fix by preventing recursion.Reported-by: Amit LangoteDiagnosed-by: Amit LangoteAuthor: Amit Langote, Álvaro HerreraDiscussion:https://postgr.es/m/f2b8ead5-4131-d5a8-8016-2ea0a31250af@lab.ntt.co.jp1 parente6c3ba7 commitefd9366
File tree
4 files changed
+66
-8
lines changed- src
- backend
- catalog
- commands
- test/regress
- expected
- sql
4 files changed
+66
-8
lines changedLines changed: 10 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
783 | 783 |
| |
784 | 784 |
| |
785 | 785 |
| |
| 786 | + | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
786 | 792 |
| |
787 | 793 |
| |
788 | 794 |
| |
| |||
797 | 803 |
| |
798 | 804 |
| |
799 | 805 |
| |
800 |
| - | |
801 |
| - | |
| 806 | + | |
802 | 807 |
| |
803 | 808 |
| |
| 809 | + | |
| 810 | + | |
| 811 | + | |
804 | 812 |
| |
805 | 813 |
| |
806 | 814 |
| |
|
Lines changed: 23 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7243 | 7243 |
| |
7244 | 7244 |
| |
7245 | 7245 |
| |
| 7246 | + | |
7246 | 7247 |
| |
7247 | 7248 |
| |
7248 | 7249 |
| |
| |||
7586 | 7587 |
| |
7587 | 7588 |
| |
7588 | 7589 |
| |
| 7590 | + | |
| 7591 | + | |
| 7592 | + | |
| 7593 | + | |
| 7594 | + | |
| 7595 | + | |
7589 | 7596 |
| |
7590 | 7597 |
| |
7591 | 7598 |
| |
| |||
7616 | 7623 |
| |
7617 | 7624 |
| |
7618 | 7625 |
| |
7619 |
| - | |
| 7626 | + | |
7620 | 7627 |
| |
7621 | 7628 |
| |
7622 | 7629 |
| |
| |||
7937 | 7944 |
| |
7938 | 7945 |
| |
7939 | 7946 |
| |
7940 |
| - | |
| 7947 | + | |
7941 | 7948 |
| |
7942 | 7949 |
| |
7943 | 7950 |
| |
| |||
9131 | 9138 |
| |
9132 | 9139 |
| |
9133 | 9140 |
| |
| 9141 | + | |
9134 | 9142 |
| |
9135 | 9143 |
| |
9136 | 9144 |
| |
| |||
9171 | 9179 |
| |
9172 | 9180 |
| |
9173 | 9181 |
| |
| 9182 | + | |
9174 | 9183 |
| |
9175 | 9184 |
| |
9176 | 9185 |
| |
| |||
9179 | 9188 |
| |
9180 | 9189 |
| |
9181 | 9190 |
| |
9182 |
| - | |
| 9191 | + | |
9183 | 9192 |
| |
9184 | 9193 |
| |
9185 | 9194 |
| |
| |||
9223 | 9232 |
| |
9224 | 9233 |
| |
9225 | 9234 |
| |
| 9235 | + | |
| 9236 | + | |
| 9237 | + | |
| 9238 | + | |
| 9239 | + | |
| 9240 | + | |
| 9241 | + | |
| 9242 | + | |
| 9243 | + | |
| 9244 | + | |
| 9245 | + | |
9226 | 9246 |
| |
9227 | 9247 |
| |
9228 | 9248 |
| |
|
Lines changed: 18 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1945 | 1945 |
| |
1946 | 1946 |
| |
1947 | 1947 |
| |
| 1948 | + | |
| 1949 | + | |
| 1950 | + | |
| 1951 | + | |
| 1952 | + | |
| 1953 | + | |
| 1954 | + | |
| 1955 | + | |
| 1956 | + | |
| 1957 | + | |
| 1958 | + | |
| 1959 | + | |
| 1960 | + | |
| 1961 | + | |
| 1962 | + | |
| 1963 | + | |
1948 | 1964 |
| |
1949 |
| - | |
1950 |
| - | |
| 1965 | + | |
| 1966 | + | |
1951 | 1967 |
|
Lines changed: 15 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1392 | 1392 |
| |
1393 | 1393 |
| |
1394 | 1394 |
| |
| 1395 | + | |
| 1396 | + | |
| 1397 | + | |
| 1398 | + | |
| 1399 | + | |
| 1400 | + | |
| 1401 | + | |
| 1402 | + | |
| 1403 | + | |
| 1404 | + | |
| 1405 | + | |
| 1406 | + | |
| 1407 | + | |
| 1408 | + | |
1395 | 1409 |
| |
1396 |
| - | |
| 1410 | + | |
1397 | 1411 |
|
0 commit comments
Comments
(0)