forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork0
Commitc0486e9
committed
Fix plpgsql's handling of "simple" expression evaluation.
In general, expression execution state trees aren't re-entrantly usable,since functions can store private state information in them.For efficiency reasons, plpgsql tries to cache and reuse state trees for"simple" expressions. It can get away with that most of the time, but itcan fail if the state tree is dirty from a previous failed execution (asin an example from Alvaro) or is being used recursively (as noted by me).Fix by tracking whether a state tree is in use, and falling back to the"non-simple" code path if so. This results in a pretty considerable speedhit when the non-simple path is taken, but the available alternatives seemeven more unpleasant because they add overhead in the simple path. Peridea from Heikki.Back-patch to all supported branches.1 parent35b66df commitc0486e9
File tree
4 files changed
+113
-4
lines changed- src
- pl/plpgsql/src
- test/regress
- expected
- sql
4 files changed
+113
-4
lines changedLines changed: 19 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3731 | 3731 |
| |
3732 | 3732 |
| |
3733 | 3733 |
| |
3734 |
| - | |
| 3734 | + | |
| 3735 | + | |
| 3736 | + | |
| 3737 | + | |
| 3738 | + | |
| 3739 | + | |
| 3740 | + | |
| 3741 | + | |
3735 | 3742 |
| |
3736 | 3743 |
| |
3737 | 3744 |
| |
| |||
3883 | 3890 |
| |
3884 | 3891 |
| |
3885 | 3892 |
| |
| 3893 | + | |
3886 | 3894 |
| |
3887 | 3895 |
| |
3888 | 3896 |
| |
| |||
3938 | 3946 |
| |
3939 | 3947 |
| |
3940 | 3948 |
| |
| 3949 | + | |
| 3950 | + | |
| 3951 | + | |
| 3952 | + | |
| 3953 | + | |
3941 | 3954 |
| |
3942 | 3955 |
| |
3943 | 3956 |
| |
3944 | 3957 |
| |
3945 | 3958 |
| |
3946 | 3959 |
| |
3947 | 3960 |
| |
| 3961 | + | |
| 3962 | + | |
| 3963 | + | |
3948 | 3964 |
| |
3949 | 3965 |
| |
3950 | 3966 |
| |
3951 | 3967 |
| |
3952 | 3968 |
| |
| 3969 | + | |
3953 | 3970 |
| |
3954 | 3971 |
| |
3955 | 3972 |
| |
| |||
4545 | 4562 |
| |
4546 | 4563 |
| |
4547 | 4564 |
| |
| 4565 | + | |
4548 | 4566 |
| |
4549 | 4567 |
| |
4550 | 4568 |
| |
|
Lines changed: 5 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
201 | 201 |
| |
202 | 202 |
| |
203 | 203 |
| |
204 |
| - | |
205 |
| - | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
206 | 207 |
| |
207 |
| - | |
| 208 | + | |
| 209 | + | |
208 | 210 |
| |
209 | 211 |
| |
210 | 212 |
| |
|
Lines changed: 47 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2782 | 2782 |
| |
2783 | 2783 |
| |
2784 | 2784 |
| |
| 2785 | + | |
| 2786 | + | |
| 2787 | + | |
| 2788 | + | |
| 2789 | + | |
| 2790 | + | |
| 2791 | + | |
| 2792 | + | |
| 2793 | + | |
| 2794 | + | |
| 2795 | + | |
| 2796 | + | |
| 2797 | + | |
| 2798 | + | |
| 2799 | + | |
| 2800 | + | |
| 2801 | + | |
| 2802 | + | |
| 2803 | + | |
| 2804 | + | |
| 2805 | + | |
| 2806 | + | |
| 2807 | + | |
| 2808 | + | |
| 2809 | + | |
| 2810 | + | |
| 2811 | + | |
| 2812 | + | |
| 2813 | + | |
| 2814 | + | |
| 2815 | + | |
| 2816 | + | |
| 2817 | + | |
| 2818 | + | |
| 2819 | + | |
| 2820 | + | |
| 2821 | + | |
| 2822 | + | |
| 2823 | + | |
| 2824 | + | |
| 2825 | + | |
| 2826 | + | |
| 2827 | + | |
| 2828 | + | |
| 2829 | + | |
| 2830 | + | |
| 2831 | + |
Lines changed: 42 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2335 | 2335 |
| |
2336 | 2336 |
| |
2337 | 2337 |
| |
| 2338 | + | |
| 2339 | + | |
| 2340 | + | |
| 2341 | + | |
| 2342 | + | |
| 2343 | + | |
| 2344 | + | |
| 2345 | + | |
| 2346 | + | |
| 2347 | + | |
| 2348 | + | |
| 2349 | + | |
| 2350 | + | |
| 2351 | + | |
| 2352 | + | |
| 2353 | + | |
| 2354 | + | |
| 2355 | + | |
| 2356 | + | |
| 2357 | + | |
| 2358 | + | |
| 2359 | + | |
| 2360 | + | |
| 2361 | + | |
| 2362 | + | |
| 2363 | + | |
| 2364 | + | |
| 2365 | + | |
| 2366 | + | |
| 2367 | + | |
| 2368 | + | |
| 2369 | + | |
| 2370 | + | |
| 2371 | + | |
| 2372 | + | |
| 2373 | + | |
| 2374 | + | |
| 2375 | + | |
| 2376 | + | |
| 2377 | + | |
| 2378 | + | |
| 2379 | + |
0 commit comments
Comments
(0)