forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit8ec9438
committed
Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalid
true at the very end of its processing, the update is broadcast via ashared-cache-inval message for the index; without this, existing backends thatalready have relcache entries for the index might never see it become valid.Also, force a relcache inval on the index's parent table at the same time,so that any cached plans for that table are re-planned; this ensures thatthe newly valid index will be used if appropriate. Aside from makingC.I.C. behave more reasonably, this is necessary infrastructure for someaspects of the HOT patch. Pavan Deolasee, with a little further stuff fromme.1 parent229d338 commit8ec9438
File tree
3 files changed
+75
-21
lines changed- src/backend
- commands
- utils/cache
3 files changed
+75
-21
lines changedLines changed: 14 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
| 44 | + | |
44 | 45 |
| |
45 | 46 |
| |
46 | 47 |
| |
| |||
514 | 515 |
| |
515 | 516 |
| |
516 | 517 |
| |
517 |
| - | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
518 | 521 |
| |
519 | 522 |
| |
520 | 523 |
| |
| |||
534 | 537 |
| |
535 | 538 |
| |
536 | 539 |
| |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
537 | 549 |
| |
538 | 550 |
| |
539 | 551 |
| |
|
Lines changed: 18 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
80 | 80 |
| |
81 | 81 |
| |
82 | 82 |
| |
83 |
| - | |
| 83 | + | |
84 | 84 |
| |
85 | 85 |
| |
86 | 86 |
| |
| |||
590 | 590 |
| |
591 | 591 |
| |
592 | 592 |
| |
593 |
| - | |
| 593 | + | |
594 | 594 |
| |
595 |
| - | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
596 | 598 |
| |
597 | 599 |
| |
598 | 600 |
| |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | + | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | + | |
| 612 | + | |
| 613 | + | |
599 | 614 |
| |
600 | 615 |
| |
601 | 616 |
| |
|
Lines changed: 43 additions & 16 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
181 | 181 |
| |
182 | 182 |
| |
183 | 183 |
| |
184 |
| - | |
| 184 | + | |
185 | 185 |
| |
186 | 186 |
| |
187 | 187 |
| |
| |||
1504 | 1504 |
| |
1505 | 1505 |
| |
1506 | 1506 |
| |
1507 |
| - | |
| 1507 | + | |
1508 | 1508 |
| |
1509 | 1509 |
| |
1510 | 1510 |
| |
| |||
1579 | 1579 |
| |
1580 | 1580 |
| |
1581 | 1581 |
| |
1582 |
| - | |
| 1582 | + | |
1583 | 1583 |
| |
1584 |
| - | |
1585 |
| - | |
1586 |
| - | |
1587 |
| - | |
1588 |
| - | |
1589 |
| - | |
1590 |
| - | |
| 1584 | + | |
| 1585 | + | |
| 1586 | + | |
| 1587 | + | |
| 1588 | + | |
| 1589 | + | |
| 1590 | + | |
1591 | 1591 |
| |
1592 |
| - | |
| 1592 | + | |
1593 | 1593 |
| |
1594 | 1594 |
| |
1595 | 1595 |
| |
1596 | 1596 |
| |
1597 | 1597 |
| |
1598 | 1598 |
| |
1599 |
| - | |
| 1599 | + | |
1600 | 1600 |
| |
1601 | 1601 |
| |
1602 | 1602 |
| |
| |||
1635 | 1635 |
| |
1636 | 1636 |
| |
1637 | 1637 |
| |
| 1638 | + | |
| 1639 | + | |
| 1640 | + | |
| 1641 | + | |
| 1642 | + | |
| 1643 | + | |
| 1644 | + | |
| 1645 | + | |
| 1646 | + | |
| 1647 | + | |
| 1648 | + | |
| 1649 | + | |
| 1650 | + | |
| 1651 | + | |
| 1652 | + | |
| 1653 | + | |
| 1654 | + | |
| 1655 | + | |
| 1656 | + | |
| 1657 | + | |
| 1658 | + | |
| 1659 | + | |
| 1660 | + | |
| 1661 | + | |
| 1662 | + | |
| 1663 | + | |
| 1664 | + | |
1638 | 1665 |
| |
1639 | 1666 |
| |
1640 | 1667 |
| |
| |||
1683 | 1710 |
| |
1684 | 1711 |
| |
1685 | 1712 |
| |
1686 |
| - | |
| 1713 | + | |
1687 | 1714 |
| |
1688 | 1715 |
| |
1689 | 1716 |
| |
| |||
1693 | 1720 |
| |
1694 | 1721 |
| |
1695 | 1722 |
| |
1696 |
| - | |
| 1723 | + | |
1697 | 1724 |
| |
1698 | 1725 |
| |
1699 | 1726 |
| |
1700 | 1727 |
| |
1701 | 1728 |
| |
1702 | 1729 |
| |
1703 |
| - | |
| 1730 | + | |
1704 | 1731 |
| |
1705 | 1732 |
| |
1706 | 1733 |
| |
|
0 commit comments
Comments
(0)