forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit8a1b31e
committed
Use bump context for TID bitmaps stored by vacuum
Vacuum does not pfree individual entries, and only frees the entirestorage space when finished with it. This allows using a bump context,eliminating the chunk header in each leaf allocation. Most leafallocations will be 16 to 32 bytes, so that's a significant savings.TidStoreCreateLocal gets a boolean parameter to indicate that thecreated store is insert-only.This requires a separate tree context for iteration, since we freethe iteration state after iteration completes.Discussion:https://postgr.es/m/CANWCAZac%3DpBePg3rhX8nXkUuaLoiAJJLtmnCfZsPEAS4EtJ%3Dkg%40mail.gmail.comDiscussion:https://postgr.es/m/CANWCAZZQFfxvzO8yZHFWtQV+Z2gAMv1ku16Vu7KWmb5kZQyd1w@mail.gmail.com1 parentbb766cd commit8a1b31e
File tree
5 files changed
+28
-7
lines changed- src
- backend/access
- common
- heap
- include
- access
- lib
- test/modules/test_tidstore
5 files changed
+28
-7
lines changedLines changed: 13 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
120 | 120 |
| |
121 | 121 |
| |
122 | 122 |
| |
123 |
| - | |
| 123 | + | |
124 | 124 |
| |
125 | 125 |
| |
126 | 126 |
| |
| |||
138 | 138 |
| |
139 | 139 |
| |
140 | 140 |
| |
141 |
| - | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
142 | 144 |
| |
143 | 145 |
| |
144 | 146 |
| |
145 | 147 |
| |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
146 | 157 |
| |
147 | 158 |
| |
148 | 159 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2874 | 2874 |
| |
2875 | 2875 |
| |
2876 | 2876 |
| |
2877 |
| - | |
| 2877 | + | |
2878 | 2878 |
| |
2879 | 2879 |
| |
2880 | 2880 |
| |
| |||
2910 | 2910 |
| |
2911 | 2911 |
| |
2912 | 2912 |
| |
2913 |
| - | |
| 2913 | + | |
2914 | 2914 |
| |
2915 | 2915 |
| |
2916 | 2916 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
32 |
| - | |
| 32 | + | |
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
|
Lines changed: 10 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
691 | 691 |
| |
692 | 692 |
| |
693 | 693 |
| |
| 694 | + | |
694 | 695 |
| |
695 | 696 |
| |
696 | 697 |
| |
| |||
1796 | 1797 |
| |
1797 | 1798 |
| |
1798 | 1799 |
| |
| 1800 | + | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
| 1805 | + | |
| 1806 | + | |
| 1807 | + | |
1799 | 1808 |
| |
1800 | 1809 |
| |
1801 | 1810 |
| |
| |||
2038 | 2047 |
| |
2039 | 2048 |
| |
2040 | 2049 |
| |
2041 |
| - | |
| 2050 | + | |
2042 | 2051 |
| |
2043 | 2052 |
| |
2044 | 2053 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
116 | 116 |
| |
117 | 117 |
| |
118 | 118 |
| |
119 |
| - | |
| 119 | + | |
| 120 | + | |
120 | 121 |
| |
121 | 122 |
| |
122 | 123 |
| |
|
0 commit comments
Comments
(0)