- Notifications
You must be signed in to change notification settings - Fork4.9k
Commit44e56ba
committed
Fix join removal logic to clean up sub-RestrictInfos of OR clauses.
analyzejoins.c took care to clean out removed relids from theclause_relids and required_relids of RestrictInfos associated withthe doomed rel ... but it paid no attention to the fact that if such aRestrictInfo contains an OR clause, there will be sub-RestrictInfoscontaining similar fields.I'm more than a bit surprised that this oversight hasn't causedvisible problems before. In any case, it's certainly broken now,so add logic to clean out the sub-RestrictInfos recursively.We might need to back-patch this someday.Per bug #17786 from Robins Tharakan.Discussion:https://postgr.es/m/17786-f1ea7fbdab97daec@postgresql.org1 parentacc5821 commit44e56ba
File tree
3 files changed
+90
-15
lines changed- src
- backend/optimizer/plan
- test/regress
- expected
- sql
3 files changed
+90
-15
lines changedLines changed: 62 additions & 15 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
| 32 | + | |
32 | 33 |
| |
33 | 34 |
| |
34 | 35 |
| |
35 | 36 |
| |
36 | 37 |
| |
37 | 38 |
| |
38 | 39 |
| |
| 40 | + | |
| 41 | + | |
39 | 42 |
| |
40 | 43 |
| |
41 | 44 |
| |
| |||
470 | 473 |
| |
471 | 474 |
| |
472 | 475 |
| |
473 |
| - | |
| 476 | + | |
474 | 477 |
| |
475 | 478 |
| |
476 |
| - | |
477 |
| - | |
478 |
| - | |
479 | 479 |
| |
480 |
| - | |
481 |
| - | |
482 |
| - | |
483 |
| - | |
484 |
| - | |
485 |
| - | |
486 |
| - | |
487 |
| - | |
488 |
| - | |
489 |
| - | |
490 |
| - | |
| 480 | + | |
| 481 | + | |
491 | 482 |
| |
492 | 483 |
| |
493 | 484 |
| |
| |||
498 | 489 |
| |
499 | 490 |
| |
500 | 491 |
| |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
501 | 548 |
| |
502 | 549 |
| |
503 | 550 |
| |
|
Lines changed: 20 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5344 | 5344 |
| |
5345 | 5345 |
| |
5346 | 5346 |
| |
| 5347 | + | |
| 5348 | + | |
| 5349 | + | |
| 5350 | + | |
| 5351 | + | |
| 5352 | + | |
| 5353 | + | |
| 5354 | + | |
| 5355 | + | |
| 5356 | + | |
| 5357 | + | |
| 5358 | + | |
| 5359 | + | |
| 5360 | + | |
| 5361 | + | |
| 5362 | + | |
| 5363 | + | |
| 5364 | + | |
| 5365 | + | |
| 5366 | + | |
5347 | 5367 |
| |
5348 | 5368 |
| |
5349 | 5369 |
| |
|
Lines changed: 8 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1955 | 1955 |
| |
1956 | 1956 |
| |
1957 | 1957 |
| |
| 1958 | + | |
| 1959 | + | |
| 1960 | + | |
| 1961 | + | |
| 1962 | + | |
| 1963 | + | |
| 1964 | + | |
| 1965 | + | |
1958 | 1966 |
| |
1959 | 1967 |
| |
1960 | 1968 |
| |
|
0 commit comments
Comments
(0)