- Notifications
You must be signed in to change notification settings - Fork5k
Commitcb02fcb
committed
Fix bogus dependency handling for GENERATED expressions.
For GENERATED columns, we record all dependencies of the generationexpression as AUTO dependencies of the column itself. This meansthat the generated column is silently dropped if any dependencyis removed, even if CASCADE wasn't specified. This is at leasta POLA violation, but I think it's actually based on a misreadingof the standard. The standard does say that you can't drop adependent GENERATED column in RESTRICT mode; but that's buried downin a subparagraph, on a different page from some pseudocode thatmakes it look like an AUTO drop is being suggested.Change this to be more like the way that we handle regular defaultexpressions, ie record the dependencies as NORMAL dependencies ofthe pg_attrdef entry. Also, make the pg_attrdef entry's dependencyon the column itself be INTERNAL not AUTO. That has two effects:* the column will go away, not just lose its default, if anydependency of the expression is dropped with CASCADE. So wedon't need any special mechanism to make that happen.* it provides an additional cross-check preventing someone fromdropping the default expression without dropping the column.catversion bump because of change in the contents of pg_depend(which also requires a change in one information_schema view).Per bug #17439 from Kevin Humphreys. Although this is a longstandingbug, it seems impractical to back-patch because of the need forcatalog contents changes.Discussion:https://postgr.es/m/17439-7df4421197e928f0@postgresql.org1 parent17f3bc0 commitcb02fcb
File tree
7 files changed
+113
-117
lines changed- src
- backend
- catalog
- commands
- bin/pg_dump
- include/catalog
- test/regress
- expected
- sql
7 files changed
+113
-117
lines changedLines changed: 7 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
514 | 514 |
| |
515 | 515 |
| |
516 | 516 |
| |
517 |
| - | |
| 517 | + | |
518 | 518 |
| |
519 | 519 |
| |
520 | 520 |
| |
521 | 521 |
| |
522 |
| - | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
523 | 526 |
| |
524 |
| - | |
525 |
| - | |
526 |
| - | |
| 527 | + | |
| 528 | + | |
527 | 529 |
| |
528 | 530 |
| |
529 | 531 |
| |
|
Lines changed: 8 additions & 22 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
174 | 174 |
| |
175 | 175 |
| |
176 | 176 |
| |
177 |
| - | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
178 | 180 |
| |
179 | 181 |
| |
180 | 182 |
| |
181 | 183 |
| |
182 | 184 |
| |
183 |
| - | |
| 185 | + | |
| 186 | + | |
184 | 187 |
| |
185 | 188 |
| |
186 | 189 |
| |
187 | 190 |
| |
188 |
| - | |
189 |
| - | |
190 |
| - | |
191 |
| - | |
192 |
| - | |
193 |
| - | |
194 |
| - | |
195 |
| - | |
196 |
| - | |
197 |
| - | |
198 |
| - | |
199 |
| - | |
200 |
| - | |
201 |
| - | |
202 |
| - | |
203 |
| - | |
204 |
| - | |
205 |
| - | |
206 |
| - | |
207 |
| - | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
208 | 194 |
| |
209 | 195 |
| |
210 | 196 |
| |
|
Lines changed: 80 additions & 83 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7899 | 7899 |
| |
7900 | 7900 |
| |
7901 | 7901 |
| |
| 7902 | + | |
7902 | 7903 |
| |
7903 | 7904 |
| |
7904 | 7905 |
| |
| |||
7936 | 7937 |
| |
7937 | 7938 |
| |
7938 | 7939 |
| |
| 7940 | + | |
| 7941 | + | |
| 7942 | + | |
| 7943 | + | |
7939 | 7944 |
| |
7940 | 7945 |
| |
7941 | 7946 |
| |
7942 | 7947 |
| |
7943 | 7948 |
| |
7944 |
| - | |
7945 |
| - | |
7946 |
| - | |
| 7949 | + | |
7947 | 7950 |
| |
7948 | 7951 |
| |
7949 | 7952 |
| |
7950 | 7953 |
| |
7951 |
| - | |
7952 |
| - | |
7953 |
| - | |
7954 |
| - | |
7955 | 7954 |
| |
7956 |
| - | |
7957 |
| - | |
7958 |
| - | |
7959 |
| - | |
7960 |
| - | |
| 7955 | + | |
| 7956 | + | |
| 7957 | + | |
7961 | 7958 |
| |
7962 |
| - | |
7963 |
| - | |
7964 |
| - | |
7965 |
| - | |
7966 |
| - | |
7967 |
| - | |
7968 |
| - | |
7969 |
| - | |
7970 |
| - | |
7971 |
| - | |
7972 |
| - | |
7973 |
| - | |
7974 |
| - | |
7975 |
| - | |
7976 |
| - | |
7977 |
| - | |
7978 |
| - | |
7979 |
| - | |
7980 |
| - | |
7981 |
| - | |
| 7959 | + | |
| 7960 | + | |
| 7961 | + | |
| 7962 | + | |
| 7963 | + | |
7982 | 7964 |
| |
7983 |
| - | |
7984 |
| - | |
7985 |
| - | |
7986 |
| - | |
7987 |
| - | |
7988 |
| - | |
7989 |
| - | |
7990 |
| - | |
7991 |
| - | |
7992 |
| - | |
7993 |
| - | |
7994 |
| - | |
7995 |
| - | |
7996 |
| - | |
7997 |
| - | |
7998 |
| - | |
7999 |
| - | |
| 7965 | + | |
| 7966 | + | |
8000 | 7967 |
| |
8001 |
| - | |
8002 |
| - | |
| 7968 | + | |
| 7969 | + | |
| 7970 | + | |
| 7971 | + | |
| 7972 | + | |
| 7973 | + | |
| 7974 | + | |
8003 | 7975 |
| |
| 7976 | + | |
| 7977 | + | |
8004 | 7978 |
| |
8005 | 7979 |
| |
8006 | 7980 |
| |
| |||
12548 | 12522 |
| |
12549 | 12523 |
| |
12550 | 12524 |
| |
12551 |
| - | |
12552 |
| - | |
12553 |
| - | |
12554 |
| - | |
12555 |
| - | |
12556 |
| - | |
12557 |
| - | |
12558 |
| - | |
12559 |
| - | |
12560 |
| - | |
12561 |
| - | |
12562 |
| - | |
12563 |
| - | |
12564 |
| - | |
12565 |
| - | |
12566 | 12525 |
| |
12567 | 12526 |
| |
12568 | 12527 |
| |
| |||
12625 | 12584 |
| |
12626 | 12585 |
| |
12627 | 12586 |
| |
| 12587 | + | |
| 12588 | + | |
12628 | 12589 |
| |
12629 |
| - | |
12630 |
| - | |
12631 |
| - | |
12632 |
| - | |
12633 |
| - | |
12634 |
| - | |
| 12590 | + | |
| 12591 | + | |
| 12592 | + | |
| 12593 | + | |
| 12594 | + | |
| 12595 | + | |
| 12596 | + | |
| 12597 | + | |
| 12598 | + | |
| 12599 | + | |
| 12600 | + | |
| 12601 | + | |
| 12602 | + | |
| 12603 | + | |
| 12604 | + | |
| 12605 | + | |
| 12606 | + | |
| 12607 | + | |
| 12608 | + | |
| 12609 | + | |
| 12610 | + | |
| 12611 | + | |
| 12612 | + | |
| 12613 | + | |
| 12614 | + | |
| 12615 | + | |
| 12616 | + | |
| 12617 | + | |
| 12618 | + | |
| 12619 | + | |
12635 | 12620 |
| |
12636 | 12621 |
| |
12637 | 12622 |
| |
| |||
12694 | 12679 |
| |
12695 | 12680 |
| |
12696 | 12681 |
| |
12697 |
| - | |
12698 |
| - | |
12699 |
| - | |
| 12682 | + | |
| 12683 | + | |
12700 | 12684 |
| |
12701 | 12685 |
| |
12702 | 12686 |
| |
| |||
12723 | 12707 |
| |
12724 | 12708 |
| |
12725 | 12709 |
| |
12726 |
| - | |
12727 |
| - | |
| 12710 | + | |
12728 | 12711 |
| |
12729 | 12712 |
| |
12730 | 12713 |
| |
12731 | 12714 |
| |
12732 | 12715 |
| |
12733 |
| - | |
12734 |
| - | |
12735 |
| - | |
12736 |
| - | |
12737 |
| - | |
| 12716 | + | |
12738 | 12717 |
| |
12739 | 12718 |
| |
12740 | 12719 |
| |
| |||
12850 | 12829 |
| |
12851 | 12830 |
| |
12852 | 12831 |
| |
12853 |
| - | |
| 12832 | + | |
| 12833 | + | |
| 12834 | + | |
| 12835 | + | |
| 12836 | + | |
| 12837 | + | |
| 12838 | + | |
| 12839 | + | |
| 12840 | + | |
| 12841 | + | |
| 12842 | + | |
| 12843 | + | |
| 12844 | + | |
| 12845 | + | |
| 12846 | + | |
| 12847 | + | |
| 12848 | + | |
| 12849 | + | |
| 12850 | + | |
12854 | 12851 |
| |
12855 | 12852 |
| |
12856 | 12853 |
| |
|
Lines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1203 | 1203 |
| |
1204 | 1204 |
| |
1205 | 1205 |
| |
1206 |
| - | |
1207 |
| - | |
1208 |
| - | |
1209 |
| - | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
1210 | 1210 |
| |
1211 | 1211 |
| |
1212 | 1212 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
56 |
| - | |
| 56 | + | |
57 | 57 |
| |
58 | 58 |
|
Lines changed: 10 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
477 | 477 |
| |
478 | 478 |
| |
479 | 479 |
| |
480 |
| - | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
481 | 486 |
| |
482 | 487 |
| |
483 | 488 |
| |
| |||
519 | 524 |
| |
520 | 525 |
| |
521 | 526 |
| |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
522 | 531 |
| |
523 | 532 |
| |
524 | 533 |
| |
|
Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
231 | 231 |
| |
232 | 232 |
| |
233 | 233 |
| |
234 |
| - | |
| 234 | + | |
| 235 | + | |
235 | 236 |
| |
236 | 237 |
| |
237 | 238 |
| |
| |||
260 | 261 |
| |
261 | 262 |
| |
262 | 263 |
| |
| 264 | + | |
263 | 265 |
| |
264 | 266 |
| |
265 | 267 |
| |
|
0 commit comments
Comments
(0)