forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit6530df6
committed
Redesign the caching done by get_cached_rowtype().
Previously, get_cached_rowtype() cached a pointer to a reference-countedtuple descriptor from the typcache, relying on the ExprContextCallbackmechanism to release the tupdesc refcount when the expression treeusing the tupdesc was destroyed. This worked fine when it was designed,but the introduction of within-DO-block COMMITs broke it. The refcountis logged in a transaction-lifespan resource owner, but plpgsql won'tdestroy simple expressions made within the DO block (before its firstcommit) until the DO block is exited. That results in a warning abouta leaked tupdesc refcount when the COMMIT destroys the original resourceowner, and then an error about the active resource owner not holding amatching refcount when the expression is destroyed.To fix, get rid of the need to have a shutdown callback at all, byinstead caching a pointer to the relevant typcache entry. Thosesurvive for the life of the backend, so we needn't worry about thepointer becoming stale. (For registered RECORD types, we can stillcache a pointer to the tupdesc, knowing that it won't change for thelife of the backend.) This mechanism has been in use in plpgsqland expandedrecord.c since commit4b93f57, and seems to work well.This change requires modifying the ExprEvalStep structs used by therelevant expression step types, which is slightly worrisome forback-patching. However, there seems no good reason for extensionsto be familiar with the details of these particular sub-structs.Per report from Rohit Bhogate. Back-patch to v11 where within-DO-blockCOMMITs became a thing.Discussion:https://postgr.es/m/CAAV6ZkQRCVBh8qAY+SZiHnz+U+FqAGBBDaDTjF2yiKa2nJSLKg@mail.gmail.com1 parent5f12bc9 commit6530df6
File tree
5 files changed
+177
-91
lines changed- src
- backend/executor
- include/executor
- pl/plpgsql/src
- expected
- sql
5 files changed
+177
-91
lines changedLines changed: 19 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1130 | 1130 |
| |
1131 | 1131 |
| |
1132 | 1132 |
| |
1133 |
| - | |
| 1133 | + | |
1134 | 1134 |
| |
1135 | 1135 |
| |
1136 | 1136 |
| |
| |||
1140 | 1140 |
| |
1141 | 1141 |
| |
1142 | 1142 |
| |
1143 |
| - | |
| 1143 | + | |
1144 | 1144 |
| |
1145 | 1145 |
| |
1146 | 1146 |
| |
| |||
1156 | 1156 |
| |
1157 | 1157 |
| |
1158 | 1158 |
| |
1159 |
| - | |
1160 |
| - | |
1161 |
| - | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
1162 | 1162 |
| |
1163 | 1163 |
| |
1164 | 1164 |
| |
1165 | 1165 |
| |
1166 | 1166 |
| |
1167 | 1167 |
| |
1168 | 1168 |
| |
1169 |
| - | |
| 1169 | + | |
1170 | 1170 |
| |
1171 | 1171 |
| |
1172 | 1172 |
| |
| |||
1224 | 1224 |
| |
1225 | 1225 |
| |
1226 | 1226 |
| |
1227 |
| - | |
| 1227 | + | |
1228 | 1228 |
| |
1229 | 1229 |
| |
1230 | 1230 |
| |
| |||
1370 | 1370 |
| |
1371 | 1371 |
| |
1372 | 1372 |
| |
| 1373 | + | |
| 1374 | + | |
| 1375 | + | |
| 1376 | + | |
| 1377 | + | |
| 1378 | + | |
1373 | 1379 |
| |
1374 | 1380 |
| |
1375 | 1381 |
| |
1376 | 1382 |
| |
1377 | 1383 |
| |
1378 | 1384 |
| |
1379 |
| - | |
1380 |
| - | |
1381 |
| - | |
| 1385 | + | |
| 1386 | + | |
| 1387 | + | |
| 1388 | + | |
| 1389 | + | |
1382 | 1390 |
| |
1383 |
| - | |
1384 | 1391 |
| |
1385 | 1392 |
| |
1386 | 1393 |
| |
| |||
2005 | 2012 |
| |
2006 | 2013 |
| |
2007 | 2014 |
| |
2008 |
| - | |
| 2015 | + | |
2009 | 2016 |
| |
2010 | 2017 |
| |
2011 | 2018 |
| |
|
Lines changed: 89 additions & 68 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
145 | 145 |
| |
146 | 146 |
| |
147 | 147 |
| |
148 |
| - | |
149 |
| - | |
| 148 | + | |
| 149 | + | |
150 | 150 |
| |
151 | 151 |
| |
152 | 152 |
| |
| |||
1919 | 1919 |
| |
1920 | 1920 |
| |
1921 | 1921 |
| |
1922 |
| - | |
1923 |
| - | |
1924 |
| - | |
| 1922 | + | |
| 1923 | + | |
| 1924 | + | |
1925 | 1925 |
| |
1926 |
| - | |
1927 |
| - | |
1928 |
| - | |
| 1926 | + | |
| 1927 | + | |
| 1928 | + | |
| 1929 | + | |
| 1930 | + | |
| 1931 | + | |
| 1932 | + | |
1929 | 1933 |
| |
1930 | 1934 |
| |
1931 | 1935 |
| |
1932 |
| - | |
| 1936 | + | |
| 1937 | + | |
1933 | 1938 |
| |
1934 |
| - | |
1935 |
| - | |
1936 |
| - | |
1937 |
| - | |
1938 |
| - | |
1939 |
| - | |
| 1939 | + | |
1940 | 1940 |
| |
1941 |
| - | |
| 1941 | + | |
| 1942 | + | |
| 1943 | + | |
| 1944 | + | |
| 1945 | + | |
| 1946 | + | |
| 1947 | + | |
| 1948 | + | |
1942 | 1949 |
| |
1943 |
| - | |
| 1950 | + | |
| 1951 | + | |
| 1952 | + | |
1944 | 1953 |
| |
1945 |
| - | |
1946 |
| - | |
| 1954 | + | |
| 1955 | + | |
| 1956 | + | |
| 1957 | + | |
| 1958 | + | |
| 1959 | + | |
| 1960 | + | |
| 1961 | + | |
| 1962 | + | |
| 1963 | + | |
1947 | 1964 |
| |
1948 |
| - | |
| 1965 | + | |
| 1966 | + | |
| 1967 | + | |
| 1968 | + | |
| 1969 | + | |
| 1970 | + | |
| 1971 | + | |
| 1972 | + | |
| 1973 | + | |
| 1974 | + | |
| 1975 | + | |
| 1976 | + | |
| 1977 | + | |
| 1978 | + | |
| 1979 | + | |
| 1980 | + | |
1949 | 1981 |
| |
1950 |
| - | |
1951 |
| - | |
1952 |
| - | |
1953 |
| - | |
| 1982 | + | |
| 1983 | + | |
| 1984 | + | |
| 1985 | + | |
| 1986 | + | |
| 1987 | + | |
| 1988 | + | |
1954 | 1989 |
| |
1955 |
| - | |
| 1990 | + | |
1956 | 1991 |
| |
1957 |
| - | |
1958 | 1992 |
| |
1959 | 1993 |
| |
1960 |
| - | |
1961 |
| - | |
1962 |
| - | |
1963 |
| - | |
1964 |
| - | |
1965 |
| - | |
1966 |
| - | |
1967 |
| - | |
1968 |
| - | |
1969 |
| - | |
1970 |
| - | |
1971 |
| - | |
1972 | 1994 |
| |
1973 | 1995 |
| |
1974 | 1996 |
| |
| |||
2501 | 2523 |
| |
2502 | 2524 |
| |
2503 | 2525 |
| |
2504 |
| - | |
2505 |
| - | |
| 2526 | + | |
2506 | 2527 |
| |
2507 | 2528 |
| |
2508 | 2529 |
| |
| |||
2938 | 2959 |
| |
2939 | 2960 |
| |
2940 | 2961 |
| |
2941 |
| - | |
2942 |
| - | |
| 2962 | + | |
2943 | 2963 |
| |
2944 | 2964 |
| |
2945 | 2965 |
| |
| |||
2997 | 3017 |
| |
2998 | 3018 |
| |
2999 | 3019 |
| |
3000 |
| - | |
| 3020 | + | |
3001 | 3021 |
| |
3002 |
| - | |
| 3022 | + | |
3003 | 3023 |
| |
3004 | 3024 |
| |
3005 | 3025 |
| |
| |||
3041 | 3061 |
| |
3042 | 3062 |
| |
3043 | 3063 |
| |
| 3064 | + | |
3044 | 3065 |
| |
3045 | 3066 |
| |
3046 |
| - | |
3047 |
| - | |
| 3067 | + | |
| 3068 | + | |
| 3069 | + | |
| 3070 | + | |
| 3071 | + | |
3048 | 3072 |
| |
3049 | 3073 |
| |
3050 | 3074 |
| |
| |||
3255 | 3279 |
| |
3256 | 3280 |
| |
3257 | 3281 |
| |
3258 |
| - | |
3259 | 3282 |
| |
3260 | 3283 |
| |
3261 | 3284 |
| |
3262 | 3285 |
| |
3263 | 3286 |
| |
3264 | 3287 |
| |
| 3288 | + | |
3265 | 3289 |
| |
3266 | 3290 |
| |
3267 | 3291 |
| |
| |||
3270 | 3294 |
| |
3271 | 3295 |
| |
3272 | 3296 |
| |
3273 |
| - | |
3274 |
| - | |
3275 |
| - | |
3276 |
| - | |
3277 |
| - | |
3278 |
| - | |
3279 |
| - | |
3280 |
| - | |
3281 |
| - | |
3282 |
| - | |
3283 |
| - | |
3284 |
| - | |
3285 |
| - | |
3286 |
| - | |
3287 |
| - | |
3288 |
| - | |
3289 |
| - | |
3290 |
| - | |
| 3297 | + | |
| 3298 | + | |
| 3299 | + | |
| 3300 | + | |
| 3301 | + | |
| 3302 | + | |
| 3303 | + | |
| 3304 | + | |
| 3305 | + | |
| 3306 | + | |
| 3307 | + | |
| 3308 | + | |
| 3309 | + | |
3291 | 3310 |
| |
3292 | 3311 |
| |
3293 | 3312 |
| |
| |||
3298 | 3317 |
| |
3299 | 3318 |
| |
3300 | 3319 |
| |
3301 |
| - | |
3302 |
| - | |
| 3320 | + | |
| 3321 | + | |
3303 | 3322 |
| |
3304 | 3323 |
| |
3305 | 3324 |
| |
| |||
3310 | 3329 |
| |
3311 | 3330 |
| |
3312 | 3331 |
| |
3313 |
| - | |
3314 | 3332 |
| |
3315 | 3333 |
| |
3316 | 3334 |
| |
| |||
3340 | 3358 |
| |
3341 | 3359 |
| |
3342 | 3360 |
| |
| 3361 | + | |
| 3362 | + | |
| 3363 | + | |
3343 | 3364 |
| |
3344 | 3365 |
| |
3345 | 3366 |
| |
|
0 commit comments
Comments
(0)