- Notifications
You must be signed in to change notification settings - Fork5
Commit04f28bd
committed
Fix ALTER EXTENSION / SET SCHEMA
In its original conception, it was leaving some objects into the oldschema, but without their proper pg_depend entries; this meant that theold schema could be dropped, causing future pg_dump calls to fail on theaffected database. This was originally reported by Jeff Frost as #6704;there have been other complaints elsewhere that can probably be tracedto this bug.To fix, be more consistent about altering a table's subsidiary objectsalong the table itself; this requires some restructuring in how tablesare relocated when altering an extension -- hence the newAlterTableNamespaceInternal routine which encapsulates it for both theALTER TABLE and the ALTER EXTENSION cases.There was another bug lurking here, which was unmasked after fixing theprevious one: certain objects would be reached twice via the dependencygraph, and the second attempt to move them would cause the entireoperation to fail. Per discussion, it seems the best fix for this is todo more careful tracking of objects already moved: we now maintain alist of moved objects, to avoid attempting to do it twice for the sameobject.Authors: Alvaro Herrera, Dimitri FontaineReviewed by Tom Lane1 parent4af3dda commit04f28bd
File tree
9 files changed
+148
-67
lines changed- src
- backend
- catalog
- commands
- include
- catalog
- commands
9 files changed
+148
-67
lines changedLines changed: 11 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
679 | 679 |
| |
680 | 680 |
| |
681 | 681 |
| |
682 |
| - | |
| 682 | + | |
683 | 683 |
| |
684 | 684 |
| |
685 | 685 |
| |
| |||
712 | 712 |
| |
713 | 713 |
| |
714 | 714 |
| |
| 715 | + | |
| 716 | + | |
| 717 | + | |
| 718 | + | |
| 719 | + | |
| 720 | + | |
| 721 | + | |
| 722 | + | |
715 | 723 |
| |
716 | 724 |
| |
717 | 725 |
| |
| |||
729 | 737 |
| |
730 | 738 |
| |
731 | 739 |
| |
| 740 | + | |
| 741 | + | |
732 | 742 |
| |
733 | 743 |
| |
734 | 744 |
| |
|
Lines changed: 4 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
252 | 252 |
| |
253 | 253 |
| |
254 | 254 |
| |
255 |
| - | |
| 255 | + | |
| 256 | + | |
256 | 257 |
| |
257 | 258 |
| |
258 | 259 |
| |
| |||
266 | 267 |
| |
267 | 268 |
| |
268 | 269 |
| |
269 |
| - | |
270 | 270 |
| |
271 | 271 |
| |
272 | 272 |
| |
273 | 273 |
| |
274 |
| - | |
275 |
| - | |
276 |
| - | |
277 |
| - | |
278 |
| - | |
279 |
| - | |
280 |
| - | |
281 |
| - | |
282 |
| - | |
| 274 | + | |
283 | 275 |
| |
284 | 276 |
| |
285 | 277 |
| |
| |||
290 | 282 |
| |
291 | 283 |
| |
292 | 284 |
| |
293 |
| - | |
| 285 | + | |
294 | 286 |
| |
295 | 287 |
| |
296 | 288 |
| |
|
Lines changed: 6 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2204 | 2204 |
| |
2205 | 2205 |
| |
2206 | 2206 |
| |
| 2207 | + | |
2207 | 2208 |
| |
2208 | 2209 |
| |
2209 | 2210 |
| |
| |||
2278 | 2279 |
| |
2279 | 2280 |
| |
2280 | 2281 |
| |
| 2282 | + | |
| 2283 | + | |
2281 | 2284 |
| |
2282 | 2285 |
| |
2283 | 2286 |
| |
| |||
2317 | 2320 |
| |
2318 | 2321 |
| |
2319 | 2322 |
| |
| 2323 | + | |
2320 | 2324 |
| |
2321 | 2325 |
| |
2322 |
| - | |
| 2326 | + | |
| 2327 | + | |
2323 | 2328 |
| |
2324 | 2329 |
| |
2325 | 2330 |
| |
|
Lines changed: 85 additions & 39 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
261 | 261 |
| |
262 | 262 |
| |
263 | 263 |
| |
264 |
| - | |
| 264 | + | |
265 | 265 |
| |
266 |
| - | |
267 |
| - | |
| 266 | + | |
| 267 | + | |
268 | 268 |
| |
269 | 269 |
| |
270 | 270 |
| |
| |||
9711 | 9711 |
| |
9712 | 9712 |
| |
9713 | 9713 |
| |
9714 |
| - | |
9715 | 9714 |
| |
| 9715 | + | |
9716 | 9716 |
| |
9717 | 9717 |
| |
9718 | 9718 |
| |
| |||
9753 | 9753 |
| |
9754 | 9754 |
| |
9755 | 9755 |
| |
| 9756 | + | |
| 9757 | + | |
| 9758 | + | |
| 9759 | + | |
| 9760 | + | |
| 9761 | + | |
| 9762 | + | |
| 9763 | + | |
| 9764 | + | |
| 9765 | + | |
| 9766 | + | |
| 9767 | + | |
| 9768 | + | |
| 9769 | + | |
| 9770 | + | |
| 9771 | + | |
| 9772 | + | |
| 9773 | + | |
| 9774 | + | |
| 9775 | + | |
9756 | 9776 |
| |
9757 | 9777 |
| |
9758 | 9778 |
| |
9759 |
| - | |
| 9779 | + | |
| 9780 | + | |
9760 | 9781 |
| |
9761 | 9782 |
| |
9762 |
| - | |
| 9783 | + | |
| 9784 | + | |
9763 | 9785 |
| |
9764 | 9786 |
| |
9765 | 9787 |
| |
9766 | 9788 |
| |
9767 |
| - | |
9768 |
| - | |
9769 |
| - | |
9770 |
| - | |
| 9789 | + | |
| 9790 | + | |
| 9791 | + | |
| 9792 | + | |
| 9793 | + | |
9771 | 9794 |
| |
9772 | 9795 |
| |
9773 | 9796 |
| |
9774 |
| - | |
9775 |
| - | |
9776 |
| - | |
9777 | 9797 |
| |
9778 | 9798 |
| |
9779 | 9799 |
| |
| |||
9784 | 9804 |
| |
9785 | 9805 |
| |
9786 | 9806 |
| |
9787 |
| - | |
| 9807 | + | |
9788 | 9808 |
| |
9789 | 9809 |
| |
9790 | 9810 |
| |
| 9811 | + | |
9791 | 9812 |
| |
9792 | 9813 |
| |
9793 | 9814 |
| |
| |||
9796 | 9817 |
| |
9797 | 9818 |
| |
9798 | 9819 |
| |
9799 |
| - | |
9800 |
| - | |
9801 |
| - | |
9802 |
| - | |
9803 |
| - | |
9804 |
| - | |
9805 |
| - | |
9806 |
| - | |
| 9820 | + | |
| 9821 | + | |
| 9822 | + | |
| 9823 | + | |
| 9824 | + | |
| 9825 | + | |
| 9826 | + | |
| 9827 | + | |
| 9828 | + | |
| 9829 | + | |
| 9830 | + | |
| 9831 | + | |
| 9832 | + | |
| 9833 | + | |
| 9834 | + | |
| 9835 | + | |
| 9836 | + | |
9807 | 9837 |
| |
9808 |
| - | |
9809 |
| - | |
| 9838 | + | |
| 9839 | + | |
9810 | 9840 |
| |
9811 |
| - | |
9812 |
| - | |
| 9841 | + | |
| 9842 | + | |
9813 | 9843 |
| |
9814 |
| - | |
9815 |
| - | |
9816 |
| - | |
9817 |
| - | |
9818 |
| - | |
9819 |
| - | |
| 9844 | + | |
| 9845 | + | |
| 9846 | + | |
| 9847 | + | |
| 9848 | + | |
| 9849 | + | |
| 9850 | + | |
| 9851 | + | |
| 9852 | + | |
9820 | 9853 |
| |
9821 | 9854 |
| |
9822 | 9855 |
| |
| |||
9829 | 9862 |
| |
9830 | 9863 |
| |
9831 | 9864 |
| |
9832 |
| - | |
| 9865 | + | |
9833 | 9866 |
| |
9834 | 9867 |
| |
9835 | 9868 |
| |
| |||
9839 | 9872 |
| |
9840 | 9873 |
| |
9841 | 9874 |
| |
| 9875 | + | |
| 9876 | + | |
| 9877 | + | |
| 9878 | + | |
| 9879 | + | |
9842 | 9880 |
| |
9843 | 9881 |
| |
9844 | 9882 |
| |
9845 | 9883 |
| |
9846 | 9884 |
| |
| 9885 | + | |
| 9886 | + | |
| 9887 | + | |
9847 | 9888 |
| |
9848 |
| - | |
9849 |
| - | |
9850 |
| - | |
| 9889 | + | |
| 9890 | + | |
| 9891 | + | |
| 9892 | + | |
| 9893 | + | |
| 9894 | + | |
| 9895 | + | |
9851 | 9896 |
| |
9852 | 9897 |
| |
9853 | 9898 |
| |
| |||
9862 | 9907 |
| |
9863 | 9908 |
| |
9864 | 9909 |
| |
9865 |
| - | |
| 9910 | + | |
| 9911 | + | |
9866 | 9912 |
| |
9867 | 9913 |
| |
9868 | 9914 |
| |
| |||
9914 | 9960 |
| |
9915 | 9961 |
| |
9916 | 9962 |
| |
9917 |
| - | |
| 9963 | + | |
9918 | 9964 |
| |
9919 | 9965 |
| |
9920 | 9966 |
| |
9921 | 9967 |
| |
9922 | 9968 |
| |
9923 | 9969 |
| |
9924 |
| - | |
| 9970 | + | |
9925 | 9971 |
| |
9926 | 9972 |
| |
9927 | 9973 |
| |
|
0 commit comments
Comments
(0)