forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit6868ed7
committed
Throw error if expiring tuple is again updated or deleted.
This prevents surprising behavior when a FOR EACH ROW triggerBEFORE UPDATE or BEFORE DELETE directly or indirectly updates ordeletes the the old row. Prior to this patch the requested actionon the row could be silently ignored while all triggered actionsbased on the occurence of the requested action could be committed.One example of how this could happen is if the BEFORE DELETEtrigger for a "parent" row deleted "children" which had triggerfunctions to update summary or status data on the parent.This also prevents similar surprising problems if the query has avolatile function which updates a target row while it is alreadybeing updated.There are related issues present in FOR UPDATE cursors and READCOMMITTED queries which are not handled by this patch. Theseissues need further evalution to determine what change, if any, isneeded.Where the new error messages are generated, in most cases the bestfix will be to move code from the BEFORE trigger to an AFTERtrigger. Where this is not feasible, the trigger can avoid theerror by re-issuing the triggering statement and returning NULL.Documentation changes will be submitted in a separate patch.Kevin Grittner and Tom Lane with input from Florian Pflug andRobert Haas, based on problems encountered during conversion ofWisconsin Circuit Court trigger logic to plpgsql triggers.1 parent17804fa commit6868ed7
File tree
8 files changed
+566
-98
lines changed- src
- backend
- access/heap
- commands
- executor
- include/access
- test/regress
- expected
- sql
8 files changed
+566
-98
lines changedLines changed: 46 additions & 39 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2352 | 2352 |
| |
2353 | 2353 |
| |
2354 | 2354 |
| |
2355 |
| - | |
2356 |
| - | |
2357 | 2355 |
| |
2358 | 2356 |
| |
2359 | 2357 |
| |
2360 | 2358 |
| |
| 2359 | + | |
2361 | 2360 |
| |
2362 | 2361 |
| |
2363 | 2362 |
| |
2364 | 2363 |
| |
2365 | 2364 |
| |
2366 | 2365 |
| |
2367 |
| - | |
2368 |
| - | |
2369 |
| - | |
2370 |
| - | |
| 2366 | + | |
| 2367 | + | |
| 2368 | + | |
| 2369 | + | |
2371 | 2370 |
| |
2372 | 2371 |
| |
2373 | 2372 |
| |
2374 |
| - | |
2375 |
| - | |
| 2373 | + | |
| 2374 | + | |
2376 | 2375 |
| |
2377 | 2376 |
| |
2378 | 2377 |
| |
| |||
2533 | 2532 |
| |
2534 | 2533 |
| |
2535 | 2534 |
| |
2536 |
| - | |
2537 |
| - | |
| 2535 | + | |
| 2536 | + | |
| 2537 | + | |
| 2538 | + | |
| 2539 | + | |
| 2540 | + | |
2538 | 2541 |
| |
2539 | 2542 |
| |
2540 | 2543 |
| |
| |||
2666 | 2669 |
| |
2667 | 2670 |
| |
2668 | 2671 |
| |
2669 |
| - | |
2670 |
| - | |
| 2672 | + | |
2671 | 2673 |
| |
2672 | 2674 |
| |
2673 |
| - | |
2674 | 2675 |
| |
2675 |
| - | |
| 2676 | + | |
| 2677 | + | |
2676 | 2678 |
| |
2677 | 2679 |
| |
2678 | 2680 |
| |
| |||
2703 | 2705 |
| |
2704 | 2706 |
| |
2705 | 2707 |
| |
2706 |
| - | |
2707 |
| - | |
2708 | 2708 |
| |
2709 | 2709 |
| |
2710 | 2710 |
| |
2711 | 2711 |
| |
| 2712 | + | |
2712 | 2713 |
| |
2713 | 2714 |
| |
2714 | 2715 |
| |
| |||
2721 | 2722 |
| |
2722 | 2723 |
| |
2723 | 2724 |
| |
2724 |
| - | |
2725 |
| - | |
2726 |
| - | |
2727 |
| - | |
| 2725 | + | |
| 2726 | + | |
| 2727 | + | |
| 2728 | + | |
2728 | 2729 |
| |
2729 | 2730 |
| |
2730 | 2731 |
| |
2731 |
| - | |
2732 |
| - | |
| 2732 | + | |
| 2733 | + | |
2733 | 2734 |
| |
2734 | 2735 |
| |
2735 | 2736 |
| |
| |||
2908 | 2909 |
| |
2909 | 2910 |
| |
2910 | 2911 |
| |
2911 |
| - | |
2912 |
| - | |
| 2912 | + | |
| 2913 | + | |
| 2914 | + | |
| 2915 | + | |
| 2916 | + | |
| 2917 | + | |
2913 | 2918 |
| |
2914 | 2919 |
| |
2915 | 2920 |
| |
| |||
3379 | 3384 |
| |
3380 | 3385 |
| |
3381 | 3386 |
| |
3382 |
| - | |
3383 |
| - | |
| 3387 | + | |
3384 | 3388 |
| |
3385 | 3389 |
| |
3386 |
| - | |
3387 | 3390 |
| |
3388 |
| - | |
| 3391 | + | |
| 3392 | + | |
3389 | 3393 |
| |
3390 | 3394 |
| |
3391 | 3395 |
| |
| |||
3423 | 3427 |
| |
3424 | 3428 |
| |
3425 | 3429 |
| |
3426 |
| - | |
3427 |
| - | |
| 3430 | + | |
3428 | 3431 |
| |
3429 | 3432 |
| |
3430 | 3433 |
| |
3431 | 3434 |
| |
3432 | 3435 |
| |
3433 | 3436 |
| |
3434 |
| - | |
3435 |
| - | |
3436 |
| - | |
3437 |
| - | |
| 3437 | + | |
| 3438 | + | |
| 3439 | + | |
| 3440 | + | |
3438 | 3441 |
| |
3439 | 3442 |
| |
3440 | 3443 |
| |
| |||
3470 | 3473 |
| |
3471 | 3474 |
| |
3472 | 3475 |
| |
3473 |
| - | |
3474 |
| - | |
3475 |
| - | |
| 3476 | + | |
| 3477 | + | |
| 3478 | + | |
3476 | 3479 |
| |
3477 | 3480 |
| |
3478 | 3481 |
| |
| |||
3657 | 3660 |
| |
3658 | 3661 |
| |
3659 | 3662 |
| |
3660 |
| - | |
3661 |
| - | |
| 3663 | + | |
| 3664 | + | |
| 3665 | + | |
| 3666 | + | |
| 3667 | + | |
| 3668 | + | |
3662 | 3669 |
| |
3663 | 3670 |
| |
3664 | 3671 |
| |
|
Lines changed: 22 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2571 | 2571 |
| |
2572 | 2572 |
| |
2573 | 2573 |
| |
2574 |
| - | |
2575 |
| - | |
| 2574 | + | |
2576 | 2575 |
| |
2577 | 2576 |
| |
2578 | 2577 |
| |
| |||
2584 | 2583 |
| |
2585 | 2584 |
| |
2586 | 2585 |
| |
2587 |
| - | |
2588 |
| - | |
| 2586 | + | |
2589 | 2587 |
| |
2590 |
| - | |
| 2588 | + | |
| 2589 | + | |
2591 | 2590 |
| |
2592 | 2591 |
| |
2593 | 2592 |
| |
| 2593 | + | |
| 2594 | + | |
| 2595 | + | |
| 2596 | + | |
| 2597 | + | |
| 2598 | + | |
| 2599 | + | |
| 2600 | + | |
| 2601 | + | |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + | |
2594 | 2607 |
| |
2595 | 2608 |
| |
2596 | 2609 |
| |
| |||
2604 | 2617 |
| |
2605 | 2618 |
| |
2606 | 2619 |
| |
2607 |
| - | |
| 2620 | + | |
2608 | 2621 |
| |
2609 | 2622 |
| |
2610 | 2623 |
| |
| |||
2613 | 2626 |
| |
2614 | 2627 |
| |
2615 | 2628 |
| |
2616 |
| - | |
2617 |
| - | |
| 2629 | + | |
| 2630 | + | |
2618 | 2631 |
| |
2619 | 2632 |
| |
2620 |
| - | |
| 2633 | + | |
2621 | 2634 |
| |
2622 | 2635 |
| |
2623 | 2636 |
| |
|
Lines changed: 27 additions & 16 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1802 | 1802 |
| |
1803 | 1803 |
| |
1804 | 1804 |
| |
1805 |
| - | |
1806 |
| - | |
| 1805 | + | |
1807 | 1806 |
| |
1808 | 1807 |
| |
1809 | 1808 |
| |
| |||
1838 | 1837 |
| |
1839 | 1838 |
| |
1840 | 1839 |
| |
1841 |
| - | |
1842 |
| - | |
1843 |
| - | |
1844 |
| - | |
1845 |
| - | |
1846 |
| - | |
1847 |
| - | |
| 1840 | + | |
| 1841 | + | |
| 1842 | + | |
| 1843 | + | |
| 1844 | + | |
| 1845 | + | |
| 1846 | + | |
1848 | 1847 |
| |
1849 | 1848 |
| |
1850 | 1849 |
| |
| |||
1856 | 1855 |
| |
1857 | 1856 |
| |
1858 | 1857 |
| |
1859 |
| - | |
1860 |
| - | |
| 1858 | + | |
1861 | 1859 |
| |
1862 |
| - | |
| 1860 | + | |
| 1861 | + | |
1863 | 1862 |
| |
1864 | 1863 |
| |
1865 | 1864 |
| |
1866 | 1865 |
| |
1867 | 1866 |
| |
1868 | 1867 |
| |
1869 |
| - | |
| 1868 | + | |
| 1869 | + | |
| 1870 | + | |
| 1871 | + | |
| 1872 | + | |
| 1873 | + | |
| 1874 | + | |
| 1875 | + | |
| 1876 | + | |
| 1877 | + | |
| 1878 | + | |
| 1879 | + | |
| 1880 | + | |
1870 | 1881 |
| |
1871 | 1882 |
| |
1872 | 1883 |
| |
| |||
1880 | 1891 |
| |
1881 | 1892 |
| |
1882 | 1893 |
| |
1883 |
| - | |
| 1894 | + | |
1884 | 1895 |
| |
1885 | 1896 |
| |
1886 |
| - | |
| 1897 | + | |
1887 | 1898 |
| |
1888 |
| - | |
| 1899 | + | |
1889 | 1900 |
| |
1890 | 1901 |
| |
1891 | 1902 |
| |
|
Lines changed: 18 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
71 | 71 |
| |
72 | 72 |
| |
73 | 73 |
| |
74 |
| - | |
75 |
| - | |
| 74 | + | |
76 | 75 |
| |
77 | 76 |
| |
78 | 77 |
| |
| |||
117 | 116 |
| |
118 | 117 |
| |
119 | 118 |
| |
120 |
| - | |
121 |
| - | |
| 119 | + | |
122 | 120 |
| |
123 |
| - | |
| 121 | + | |
| 122 | + | |
124 | 123 |
| |
125 | 124 |
| |
126 | 125 |
| |
127 | 126 |
| |
128 |
| - | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
129 | 139 |
| |
130 | 140 |
| |
131 | 141 |
| |
| |||
137 | 147 |
| |
138 | 148 |
| |
139 | 149 |
| |
140 |
| - | |
141 |
| - | |
| 150 | + | |
142 | 151 |
| |
143 | 152 |
| |
144 | 153 |
| |
145 | 154 |
| |
146 | 155 |
| |
147 | 156 |
| |
148 | 157 |
| |
149 |
| - | |
| 158 | + | |
150 | 159 |
| |
151 | 160 |
| |
152 | 161 |
| |
|
0 commit comments
Comments
(0)