forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitb52c4fc
committed
Add TOAST table to pg_index.
This change allows pg_index rows to use out-of-line storage for the"indexprs" and "indpred" columns, which enables use-cases such asvery large index expressions.This system catalog was previously not given a TOAST table due to afear of circularity issues (see commit96cdeae). Testing hasnot revealed any such problems, and it seems unlikely that theentries for system indexes could ever need out-of-line storage. Inany case, it is still early in the v18 development cycle, socommitting this now will hopefully increase the chances of findingany unexpected problems prior to release.Bumps catversion.Reported-by: Jonathan KatzReviewed-by: Tom LaneDiscussion:https://postgr.es/m/b611015f-b423-458c-aa2d-be0e655cc1b4%40postgresql.org1 parenta7c39db commitb52c4fc
File tree
4 files changed
+8
-8
lines changed- src
- include/catalog
- test/regress
- expected
- sql
4 files changed
+8
-8
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
57 | 57 |
| |
58 | 58 |
| |
59 | 59 |
| |
60 |
| - | |
| 60 | + | |
61 | 61 |
| |
62 | 62 |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
69 | 69 |
| |
70 | 70 |
| |
71 | 71 |
| |
| 72 | + | |
| 73 | + | |
72 | 74 |
| |
73 | 75 |
| |
74 | 76 |
| |
|
Lines changed: 3 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
38 |
| - | |
39 |
| - | |
| 38 | + | |
| 39 | + | |
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
| |||
56 | 56 |
| |
57 | 57 |
| |
58 | 58 |
| |
59 |
| - | |
60 |
| - | |
61 | 59 |
| |
62 | 60 |
| |
63 |
| - | |
| 61 | + | |
64 | 62 |
| |
65 | 63 |
| |
66 | 64 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 |
| - | |
42 |
| - | |
| 41 | + | |
| 42 | + | |
43 | 43 |
| |
44 | 44 |
| |
45 | 45 |
| |
|
0 commit comments
Comments
(0)