forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit61b313e
committed
Pass down table relation into more index relation functions
This is done in preparation for logical decoding on standby, which needs toinclude whether visibility affecting WAL records are about a (user) catalogtable. Which is only known for the table, not the indexes.It's also nice to be able to pass the heap relation to GlobalVisTestFor() invacuumRedirectAndPlaceholder().Author: "Drouvot, Bertrand" <bertranddrouvot.pg@gmail.com>Discussion:https://postgr.es/m/21b700c3-eecf-2e05-a699-f8c78dd31ec7@gmail.com1 parenta88a18b commit61b313e
File tree
26 files changed
+214
-170
lines changed- contrib/amcheck
- src
- backend
- access
- gist
- heap
- nbtree
- spgist
- catalog
- commands
- optimizer/util
- utils/sort
- include
- access
- utils
26 files changed
+214
-170
lines changedLines changed: 8 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
183 | 183 |
| |
184 | 184 |
| |
185 | 185 |
| |
| 186 | + | |
186 | 187 |
| |
187 | 188 |
| |
188 | 189 |
| |
| |||
331 | 332 |
| |
332 | 333 |
| |
333 | 334 |
| |
334 |
| - | |
| 335 | + | |
335 | 336 |
| |
336 | 337 |
| |
337 | 338 |
| |
| |||
1258 | 1259 |
| |
1259 | 1260 |
| |
1260 | 1261 |
| |
1261 |
| - | |
| 1262 | + | |
1262 | 1263 |
| |
1263 | 1264 |
| |
1264 | 1265 |
| |
| |||
1768 | 1769 |
| |
1769 | 1770 |
| |
1770 | 1771 |
| |
1771 |
| - | |
| 1772 | + | |
1772 | 1773 |
| |
1773 | 1774 |
| |
1774 | 1775 |
| |
| |||
2681 | 2682 |
| |
2682 | 2683 |
| |
2683 | 2684 |
| |
2684 |
| - | |
| 2685 | + | |
2685 | 2686 |
| |
2686 | 2687 |
| |
2687 | 2688 |
| |
| |||
2694 | 2695 |
| |
2695 | 2696 |
| |
2696 | 2697 |
| |
2697 |
| - | |
| 2698 | + | |
2698 | 2699 |
| |
2699 | 2700 |
| |
2700 | 2701 |
| |
| |||
3133 | 3134 |
| |
3134 | 3135 |
| |
3135 | 3136 |
| |
3136 |
| - | |
| 3137 | + | |
3137 | 3138 |
| |
3138 | 3139 |
| |
3139 | 3140 |
| |
3140 |
| - | |
| 3141 | + | |
3141 | 3142 |
| |
3142 | 3143 |
| |
3143 | 3144 |
| |
|
Lines changed: 3 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
349 | 349 |
| |
350 | 350 |
| |
351 | 351 |
| |
352 |
| - | |
| 352 | + | |
353 | 353 |
| |
354 | 354 |
| |
355 | 355 |
| |
| |||
1695 | 1695 |
| |
1696 | 1696 |
| |
1697 | 1697 |
| |
1698 |
| - | |
| 1698 | + | |
| 1699 | + | |
1699 | 1700 |
| |
1700 | 1701 |
| |
1701 | 1702 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
298 | 298 |
| |
299 | 299 |
| |
300 | 300 |
| |
301 |
| - | |
| 301 | + | |
302 | 302 |
| |
303 | 303 |
| |
304 | 304 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
821 | 821 |
| |
822 | 822 |
| |
823 | 823 |
| |
824 |
| - | |
| 824 | + | |
825 | 825 |
| |
826 | 826 |
| |
827 | 827 |
| |
| |||
865 | 865 |
| |
866 | 866 |
| |
867 | 867 |
| |
868 |
| - | |
| 868 | + | |
869 | 869 |
| |
870 | 870 |
| |
871 | 871 |
| |
|
Lines changed: 3 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
597 | 597 |
| |
598 | 598 |
| |
599 | 599 |
| |
600 |
| - | |
| 600 | + | |
| 601 | + | |
601 | 602 |
| |
602 | 603 |
| |
603 | 604 |
| |
| |||
672 | 673 |
| |
673 | 674 |
| |
674 | 675 |
| |
675 |
| - | |
| 676 | + | |
676 | 677 |
| |
677 | 678 |
| |
678 | 679 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8268 | 8268 |
| |
8269 | 8269 |
| |
8270 | 8270 |
| |
8271 |
| - | |
| 8271 | + | |
8272 | 8272 |
| |
8273 | 8273 |
| |
8274 | 8274 |
| |
|
Lines changed: 7 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
822 | 822 |
| |
823 | 823 |
| |
824 | 824 |
| |
825 |
| - | |
| 825 | + | |
| 826 | + | |
| 827 | + | |
| 828 | + | |
| 829 | + | |
| 830 | + | |
826 | 831 |
| |
827 |
| - | |
| 832 | + | |
828 | 833 |
| |
829 | 834 |
| |
830 | 835 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2710 | 2710 |
| |
2711 | 2711 |
| |
2712 | 2712 |
| |
| 2713 | + | |
2713 | 2714 |
| |
2714 | 2715 |
| |
2715 | 2716 |
| |
| |||
2759 | 2760 |
| |
2760 | 2761 |
| |
2761 | 2762 |
| |
| 2763 | + | |
2762 | 2764 |
| |
2763 | 2765 |
| |
2764 | 2766 |
| |
|
Lines changed: 1 addition & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
288 | 288 |
| |
289 | 289 |
| |
290 | 290 |
| |
291 |
| - | |
292 |
| - | |
| 291 | + | |
293 | 292 |
| |
294 | 293 |
| |
295 | 294 |
| |
|
0 commit comments
Comments
(0)