forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitf481d28
committed
Check default partitions constraints while descending
Partitioning tuple route code assumes that the partition chosen whiledescending the partition hierarchy is always the correct one. This istrue except when the partition is the default partition and anotherpartition has been added concurrently: the partition constraint changesand we don't recheck it. This can lead to tuples mistakenly being addedto the default partition that should have been rejected.Fix by rechecking the default partition constraint while descending thehierarchy.An isolation test based on the reproduction steps described by Hao Wu(with tweaks for extra coverage) is included.Backpatch to 12, where this bug came in with898e5e3.Reported by: Hao Wu <hawu@vmware.com>Author: Amit Langote <amitlangote09@gmail.com>Author: Álvaro Herrera <alvherre@alvh.no-ip.org>Discussion:https://postgr.es/m/CA+HiwqFqBmcSSap4sFnCBUEL_VfOMmEKaQ3gwUhyfa4c7J_-nA@mail.gmail.comDiscussion:https://postgr.es/m/DM5PR0501MB3910E97A9EDFB4C775CF3D75A42F0@DM5PR0501MB3910.namprd05.prod.outlook.com1 parentc9ae5cb commitf481d28
File tree
4 files changed
+195
-25
lines changed- src
- backend/executor
- test/isolation
- expected
- specs
4 files changed
+195
-25
lines changedLines changed: 102 additions & 25 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
51 | 51 |
| |
52 | 52 |
| |
53 | 53 |
| |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
54 | 59 |
| |
55 | 60 |
| |
56 | 61 |
| |
| |||
89 | 94 |
| |
90 | 95 |
| |
91 | 96 |
| |
| 97 | + | |
92 | 98 |
| |
93 | 99 |
| |
94 | 100 |
| |
| |||
280 | 286 |
| |
281 | 287 |
| |
282 | 288 |
| |
283 |
| - | |
| 289 | + | |
| 290 | + | |
284 | 291 |
| |
285 | 292 |
| |
| 293 | + | |
286 | 294 |
| |
287 | 295 |
| |
288 | 296 |
| |
| |||
296 | 304 |
| |
297 | 305 |
| |
298 | 306 |
| |
299 |
| - | |
| 307 | + | |
300 | 308 |
| |
301 |
| - | |
302 | 309 |
| |
303 | 310 |
| |
304 | 311 |
| |
305 | 312 |
| |
306 | 313 |
| |
307 | 314 |
| |
308 | 315 |
| |
309 |
| - | |
310 |
| - | |
311 |
| - | |
312 |
| - | |
313 |
| - | |
314 |
| - | |
315 |
| - | |
316 |
| - | |
317 |
| - | |
318 |
| - | |
319 |
| - | |
320 | 316 |
| |
321 | 317 |
| |
322 | 318 |
| |
| |||
352 | 348 |
| |
353 | 349 |
| |
354 | 350 |
| |
355 |
| - | |
356 |
| - | |
357 | 351 |
| |
358 |
| - | |
359 |
| - | |
| 352 | + | |
| 353 | + | |
360 | 354 |
| |
361 | 355 |
| |
362 | 356 |
| |
| |||
400 | 394 |
| |
401 | 395 |
| |
402 | 396 |
| |
| 397 | + | |
403 | 398 |
| |
404 |
| - | |
405 |
| - | |
406 |
| - | |
407 |
| - | |
408 |
| - | |
409 |
| - | |
410 |
| - | |
| 399 | + | |
| 400 | + | |
411 | 401 |
| |
412 | 402 |
| |
413 | 403 |
| |
| |||
419 | 409 |
| |
420 | 410 |
| |
421 | 411 |
| |
| 412 | + | |
| 413 | + | |
422 | 414 |
| |
423 | 415 |
| |
424 | 416 |
| |
| |||
440 | 432 |
| |
441 | 433 |
| |
442 | 434 |
| |
| 435 | + | |
| 436 | + | |
443 | 437 |
| |
444 | 438 |
| |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
445 | 493 |
| |
446 | 494 |
| |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
447 | 504 |
| |
448 | 505 |
| |
449 | 506 |
| |
| |||
1060 | 1117 |
| |
1061 | 1118 |
| |
1062 | 1119 |
| |
| 1120 | + | |
| 1121 | + | |
1063 | 1122 |
| |
1064 | 1123 |
| |
1065 | 1124 |
| |
1066 | 1125 |
| |
1067 | 1126 |
| |
1068 | 1127 |
| |
1069 | 1128 |
| |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
1070 | 1132 |
| |
1071 | 1133 |
| |
1072 | 1134 |
| |
1073 | 1135 |
| |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
1074 | 1151 |
| |
1075 | 1152 |
| |
1076 | 1153 |
| |
|
Lines changed: 49 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
81 | 81 |
| |
82 | 82 |
| |
83 | 83 |
| |
| 84 | + | |
84 | 85 |
| |
85 | 86 |
| |
86 | 87 |
| |
|
Lines changed: 43 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + |
0 commit comments
Comments
(0)