forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit6f70d7c
committed
Have ALTER CONSTRAINT recurse on partitioned tables
When ALTER TABLE .. ALTER CONSTRAINT changes deferrability propertieschanged in a partitioned table, we failed to propagate those changescorrectly to partitions and to triggers. Repair by adding a recursionmechanism to affect all derived constraints and all derived triggers.(In particular, recurse to partitions even if their respective parentsare already in the desired state: it is possible for the partitions tohave been altered individually.) Because foreign keys involve tables intwo sides, we cannot use the standard ALTER TABLE recursion mechanism,so we invent our own by following pg_constraint.conparentid down.When ALTER TABLE .. ALTER CONSTRAINT is invoked on the derivedpg_constraint object that's automaticaly created in a partition as aresult of a constraint added to its parent, raise an error instead ofpretending to work and then failing to modify all the affected triggers.Before this commit such a command would be allowed but failed to affectall triggers, so it would silently misbehave. (Restoring dumps ofexisting databases is not affected, because pg_dump does not produceanything for such a derived constraint anyway.)Add some tests for the case.Backpatch to 11, where foreign key support was added to partitionedtables by commit3de241d. (A related change is commitf56f8f8in pg12 which added support for FKs *referencing* partitioned tables;this is what forces us to use an ad-hoc recursion mechanism for this.)Diagnosed by Tom Lane from bug report from Ron L Johnson. As of thiswriting, no reviews were offered.Discussion:https://postgr.es/m/75fe0761-a291-86a9-c8d8-4906da077469@gmail.comDiscussion:https://postgr.es/m/3144850.1607369633@sss.pgh.pa.us1 parentf33a178 commit6f70d7c
File tree
3 files changed
+311
-38
lines changed- src
- backend/commands
- test/regress
- expected
- sql
3 files changed
+311
-38
lines changedLines changed: 158 additions & 38 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
357 | 357 |
| |
358 | 358 |
| |
359 | 359 |
| |
| 360 | + | |
| 361 | + | |
| 362 | + | |
360 | 363 |
| |
361 | 364 |
| |
362 | 365 |
| |
| |||
4669 | 4672 |
| |
4670 | 4673 |
| |
4671 | 4674 |
| |
| 4675 | + | |
4672 | 4676 |
| |
4673 | 4677 |
| |
4674 | 4678 |
| |
| |||
10190 | 10194 |
| |
10191 | 10195 |
| |
10192 | 10196 |
| |
10193 |
| - | |
10194 |
| - | |
10195 |
| - | |
10196 | 10197 |
| |
10197 | 10198 |
| |
10198 | 10199 |
| |
10199 | 10200 |
| |
10200 | 10201 |
| |
10201 |
| - | |
10202 |
| - | |
| 10202 | + | |
| 10203 | + | |
10203 | 10204 |
| |
10204 | 10205 |
| |
10205 | 10206 |
| |
| 10207 | + | |
10206 | 10208 |
| |
10207 | 10209 |
| |
10208 | 10210 |
| |
10209 | 10211 |
| |
10210 | 10212 |
| |
| 10213 | + | |
| 10214 | + | |
10211 | 10215 |
| |
10212 | 10216 |
| |
10213 | 10217 |
| |
10214 | 10218 |
| |
| 10219 | + | |
10215 | 10220 |
| |
10216 | 10221 |
| |
10217 | 10222 |
| |
| |||
10245 | 10250 |
| |
10246 | 10251 |
| |
10247 | 10252 |
| |
| 10253 | + | |
| 10254 | + | |
| 10255 | + | |
| 10256 | + | |
| 10257 | + | |
| 10258 | + | |
| 10259 | + | |
| 10260 | + | |
| 10261 | + | |
| 10262 | + | |
| 10263 | + | |
| 10264 | + | |
| 10265 | + | |
| 10266 | + | |
| 10267 | + | |
| 10268 | + | |
| 10269 | + | |
| 10270 | + | |
| 10271 | + | |
| 10272 | + | |
| 10273 | + | |
| 10274 | + | |
| 10275 | + | |
| 10276 | + | |
| 10277 | + | |
| 10278 | + | |
| 10279 | + | |
| 10280 | + | |
| 10281 | + | |
| 10282 | + | |
| 10283 | + | |
| 10284 | + | |
| 10285 | + | |
| 10286 | + | |
| 10287 | + | |
| 10288 | + | |
| 10289 | + | |
| 10290 | + | |
| 10291 | + | |
| 10292 | + | |
| 10293 | + | |
| 10294 | + | |
| 10295 | + | |
| 10296 | + | |
| 10297 | + | |
| 10298 | + | |
| 10299 | + | |
| 10300 | + | |
| 10301 | + | |
| 10302 | + | |
| 10303 | + | |
| 10304 | + | |
| 10305 | + | |
| 10306 | + | |
| 10307 | + | |
| 10308 | + | |
| 10309 | + | |
| 10310 | + | |
| 10311 | + | |
| 10312 | + | |
| 10313 | + | |
| 10314 | + | |
| 10315 | + | |
| 10316 | + | |
| 10317 | + | |
| 10318 | + | |
| 10319 | + | |
| 10320 | + | |
| 10321 | + | |
| 10322 | + | |
| 10323 | + | |
| 10324 | + | |
| 10325 | + | |
| 10326 | + | |
| 10327 | + | |
| 10328 | + | |
| 10329 | + | |
| 10330 | + | |
| 10331 | + | |
| 10332 | + | |
| 10333 | + | |
| 10334 | + | |
| 10335 | + | |
| 10336 | + | |
| 10337 | + | |
| 10338 | + | |
| 10339 | + | |
| 10340 | + | |
| 10341 | + | |
| 10342 | + | |
| 10343 | + | |
| 10344 | + | |
| 10345 | + | |
| 10346 | + | |
| 10347 | + | |
| 10348 | + | |
| 10349 | + | |
| 10350 | + | |
| 10351 | + | |
| 10352 | + | |
| 10353 | + | |
| 10354 | + | |
| 10355 | + | |
| 10356 | + | |
| 10357 | + | |
10248 | 10358 |
| |
10249 | 10359 |
| |
10250 | 10360 |
| |
10251 | 10361 |
| |
10252 |
| - | |
10253 | 10362 |
| |
10254 |
| - | |
| 10363 | + | |
10255 | 10364 |
| |
10256 | 10365 |
| |
10257 |
| - | |
10258 |
| - | |
10259 | 10366 |
| |
10260 |
| - | |
10261 |
| - | |
10262 |
| - | |
10263 | 10367 |
| |
10264 | 10368 |
| |
10265 | 10369 |
| |
10266 | 10370 |
| |
10267 | 10371 |
| |
10268 | 10372 |
| |
10269 | 10373 |
| |
10270 |
| - | |
| 10374 | + | |
10271 | 10375 |
| |
10272 | 10376 |
| |
| 10377 | + | |
| 10378 | + | |
| 10379 | + | |
| 10380 | + | |
10273 | 10381 |
| |
10274 | 10382 |
| |
10275 | 10383 |
| |
10276 | 10384 |
| |
10277 | 10385 |
| |
10278 |
| - | |
10279 |
| - | |
10280 | 10386 |
| |
10281 | 10387 |
| |
10282 | 10388 |
| |
10283 |
| - | |
10284 |
| - | |
| 10389 | + | |
10285 | 10390 |
| |
10286 | 10391 |
| |
10287 |
| - | |
10288 | 10392 |
| |
10289 | 10393 |
| |
10290 | 10394 |
| |
10291 | 10395 |
| |
| 10396 | + | |
10292 | 10397 |
| |
10293 | 10398 |
| |
10294 | 10399 |
| |
| |||
10297 | 10402 |
| |
10298 | 10403 |
| |
10299 | 10404 |
| |
10300 |
| - | |
10301 |
| - | |
| 10405 | + | |
| 10406 | + | |
10302 | 10407 |
| |
10303 | 10408 |
| |
10304 | 10409 |
| |
| |||
10325 | 10430 |
| |
10326 | 10431 |
| |
10327 | 10432 |
| |
| 10433 | + | |
10328 | 10434 |
| |
10329 |
| - | |
| 10435 | + | |
| 10436 | + | |
| 10437 | + | |
| 10438 | + | |
| 10439 | + | |
| 10440 | + | |
| 10441 | + | |
| 10442 | + | |
| 10443 | + | |
| 10444 | + | |
| 10445 | + | |
| 10446 | + | |
| 10447 | + | |
| 10448 | + | |
10330 | 10449 |
| |
10331 |
| - | |
10332 |
| - | |
10333 |
| - | |
10334 |
| - | |
10335 |
| - | |
10336 |
| - | |
10337 |
| - | |
10338 |
| - | |
| 10450 | + | |
| 10451 | + | |
| 10452 | + | |
| 10453 | + | |
| 10454 | + | |
| 10455 | + | |
| 10456 | + | |
| 10457 | + | |
| 10458 | + | |
10339 | 10459 |
| |
10340 |
| - | |
| 10460 | + | |
| 10461 | + | |
| 10462 | + | |
| 10463 | + | |
| 10464 | + | |
| 10465 | + | |
| 10466 | + | |
10341 | 10467 |
| |
10342 | 10468 |
| |
10343 |
| - | |
| 10469 | + | |
10344 | 10470 |
| |
10345 |
| - | |
10346 |
| - | |
10347 | 10471 |
| |
10348 |
| - | |
10349 |
| - | |
10350 |
| - | |
10351 |
| - | |
10352 |
| - | |
| 10472 | + | |
10353 | 10473 |
| |
10354 | 10474 |
| |
10355 | 10475 |
| |
|
Lines changed: 78 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2313 | 2313 |
| |
2314 | 2314 |
| |
2315 | 2315 |
| |
| 2316 | + | |
| 2317 | + | |
| 2318 | + | |
| 2319 | + | |
| 2320 | + | |
| 2321 | + | |
| 2322 | + | |
| 2323 | + | |
| 2324 | + | |
| 2325 | + | |
| 2326 | + | |
| 2327 | + | |
| 2328 | + | |
| 2329 | + | |
| 2330 | + | |
| 2331 | + | |
| 2332 | + | |
| 2333 | + | |
| 2334 | + | |
| 2335 | + | |
| 2336 | + | |
| 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 | + | |
| 2380 | + | |
| 2381 | + | |
| 2382 | + | |
| 2383 | + | |
| 2384 | + | |
| 2385 | + | |
| 2386 | + | |
| 2387 | + | |
| 2388 | + | |
| 2389 | + | |
| 2390 | + | |
| 2391 | + | |
| 2392 | + | |
| 2393 | + | |
2316 | 2394 |
| |
2317 | 2395 |
| |
2318 | 2396 |
| |
|
0 commit comments
Comments
(0)