forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit4dff893
committed
Fix creation of duplicate foreign keys on partitions
When creating a foreign key in a partitioned table, if some partitionsalready have equivalent constraints, we wastefully create duplicates ofthe constraints instead of attaching to the existing ones. That'sinconsistent with the de-duplication that is applied when a table isattached as a partition. To fix, reuse the FK-cloning code instead ofhaving a separate code path.Backpatch to Postgres 11. This is a subtle behavior change, but surelya welcome one since there's no use in having duplicate foreign keys.Discovered by Álvaro Herrera while thinking about a different problemreported by Jesper Pedersen (bug #15587).Author: Álvaro HerreraDiscussion:https://postgr.es/m/201901151935.zfadrzvyof4k@alvherre.pgsql1 parentfca6cab commit4dff893
File tree
3 files changed
+150
-10
lines changed- src
- backend/commands
- test/regress
- expected
- sql
3 files changed
+150
-10
lines changedLines changed: 29 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7751 | 7751 |
| |
7752 | 7752 |
| |
7753 | 7753 |
| |
| 7754 | + | |
| 7755 | + | |
| 7756 | + | |
7754 | 7757 |
| |
| 7758 | + | |
7755 | 7759 |
| |
7756 | 7760 |
| |
7757 | 7761 |
| |
7758 | 7762 |
| |
7759 | 7763 |
| |
7760 | 7764 |
| |
7761 |
| - | |
7762 |
| - | |
7763 | 7765 |
| |
7764 | 7766 |
| |
7765 | 7767 |
| |
7766 |
| - | |
| 7768 | + | |
| 7769 | + | |
| 7770 | + | |
| 7771 | + | |
| 7772 | + | |
| 7773 | + | |
| 7774 | + | |
| 7775 | + | |
| 7776 | + | |
| 7777 | + | |
| 7778 | + | |
| 7779 | + | |
| 7780 | + | |
| 7781 | + | |
| 7782 | + | |
| 7783 | + | |
7767 | 7784 |
| |
7768 | 7785 |
| |
7769 |
| - | |
7770 |
| - | |
7771 |
| - | |
7772 |
| - | |
| 7786 | + | |
| 7787 | + | |
| 7788 | + | |
| 7789 | + | |
| 7790 | + | |
| 7791 | + | |
| 7792 | + | |
7773 | 7793 |
| |
7774 |
| - | |
7775 |
| - | |
| 7794 | + | |
7776 | 7795 |
| |
7777 |
| - | |
| 7796 | + | |
7778 | 7797 |
| |
7779 | 7798 |
| |
7780 | 7799 |
| |
|
Lines changed: 83 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1781 | 1781 |
| |
1782 | 1782 |
| |
1783 | 1783 |
| |
| 1784 | + | |
| 1785 | + | |
| 1786 | + | |
| 1787 | + | |
| 1788 | + | |
| 1789 | + | |
| 1790 | + | |
| 1791 | + | |
| 1792 | + | |
| 1793 | + | |
| 1794 | + | |
| 1795 | + | |
| 1796 | + | |
| 1797 | + | |
| 1798 | + | |
| 1799 | + | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
| 1805 | + | |
| 1806 | + | |
| 1807 | + | |
| 1808 | + | |
| 1809 | + | |
| 1810 | + | |
| 1811 | + | |
| 1812 | + | |
| 1813 | + | |
| 1814 | + | |
| 1815 | + | |
| 1816 | + | |
| 1817 | + | |
| 1818 | + | |
| 1819 | + | |
| 1820 | + | |
| 1821 | + | |
| 1822 | + | |
| 1823 | + | |
| 1824 | + | |
| 1825 | + | |
| 1826 | + | |
| 1827 | + | |
| 1828 | + | |
| 1829 | + | |
| 1830 | + | |
| 1831 | + | |
| 1832 | + | |
| 1833 | + | |
| 1834 | + | |
| 1835 | + | |
| 1836 | + | |
| 1837 | + | |
| 1838 | + | |
| 1839 | + | |
| 1840 | + | |
| 1841 | + | |
| 1842 | + | |
| 1843 | + | |
| 1844 | + | |
| 1845 | + | |
| 1846 | + | |
| 1847 | + | |
| 1848 | + | |
| 1849 | + | |
| 1850 | + | |
| 1851 | + | |
| 1852 | + | |
| 1853 | + | |
| 1854 | + | |
| 1855 | + | |
| 1856 | + | |
| 1857 | + | |
| 1858 | + | |
| 1859 | + | |
| 1860 | + | |
| 1861 | + | |
| 1862 | + | |
| 1863 | + | |
| 1864 | + | |
| 1865 | + | |
| 1866 | + |
Lines changed: 38 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1289 | 1289 |
| |
1290 | 1290 |
| |
1291 | 1291 |
| |
| 1292 | + | |
| 1293 | + | |
| 1294 | + | |
| 1295 | + | |
| 1296 | + | |
| 1297 | + | |
| 1298 | + | |
| 1299 | + | |
| 1300 | + | |
| 1301 | + | |
| 1302 | + | |
| 1303 | + | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + | |
| 1308 | + | |
| 1309 | + | |
| 1310 | + | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + | |
| 1314 | + | |
| 1315 | + | |
| 1316 | + | |
| 1317 | + | |
| 1318 | + | |
| 1319 | + | |
| 1320 | + | |
| 1321 | + | |
| 1322 | + | |
| 1323 | + | |
| 1324 | + | |
| 1325 | + | |
| 1326 | + | |
| 1327 | + | |
| 1328 | + | |
| 1329 | + |
0 commit comments
Comments
(0)