forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitd0e17e2
committed
Arrays are toastable. (At least if you initdb, which I didn't force.)
Remove a bunch of crufty code for large-object-based arrays, which issuperseded by TOAST and likely hasn't worked in a long time anyway.Clean up array code a little, and in particular eliminate its habitof scribbling on the input array (ie, modifying the input tuple :-().1 parentec37ea1 commitd0e17e2
File tree
9 files changed
+463
-1726
lines changed- contrib/array
- src
- backend
- commands
- executor
- utils/adt
- include
- catalog
- utils
9 files changed
+463
-1726
lines changedLines changed: 6 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
47 | 47 |
| |
48 | 48 |
| |
49 | 49 |
| |
50 |
| - | |
51 |
| - | |
| 50 | + | |
52 | 51 |
| |
53 | 52 |
| |
54 | 53 |
| |
55 | 54 |
| |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
56 | 59 |
| |
57 | 60 |
| |
58 |
| - | |
| 61 | + | |
59 | 62 |
| |
60 | 63 |
| |
61 | 64 |
| |
|
Lines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
| 13 | + | |
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
| |||
691 | 691 |
| |
692 | 692 |
| |
693 | 693 |
| |
694 |
| - | |
| 694 | + | |
695 | 695 |
| |
696 |
| - | |
697 |
| - | |
| 696 | + | |
| 697 | + | |
698 | 698 |
| |
699 | 699 |
| |
700 | 700 |
| |
|
Lines changed: 39 additions & 30 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 |
| |
| |||
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
70 |
| - | |
71 |
| - | |
72 |
| - | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
73 | 79 |
| |
74 | 80 |
| |
75 | 81 |
| |
76 | 82 |
| |
77 | 83 |
| |
78 | 84 |
| |
79 | 85 |
| |
80 |
| - | |
| 86 | + | |
| 87 | + | |
81 | 88 |
| |
82 | 89 |
| |
83 | 90 |
| |
| |||
90 | 97 |
| |
91 | 98 |
| |
92 | 99 |
| |
93 |
| - | |
| 100 | + | |
94 | 101 |
| |
95 | 102 |
| |
96 | 103 |
| |
| |||
110 | 117 |
| |
111 | 118 |
| |
112 | 119 |
| |
113 |
| - | |
| 120 | + | |
114 | 121 |
| |
115 | 122 |
| |
116 | 123 |
| |
| |||
162 | 169 |
| |
163 | 170 |
| |
164 | 171 |
| |
165 |
| - | |
| 172 | + | |
166 | 173 |
| |
167 | 174 |
| |
168 |
| - | |
169 |
| - | |
170 |
| - | |
171 |
| - | |
172 |
| - | |
173 |
| - | |
174 | 175 |
| |
175 |
| - | |
176 |
| - | |
177 |
| - | |
178 |
| - | |
179 |
| - | |
180 |
| - | |
181 |
| - | |
182 |
| - | |
183 |
| - | |
184 |
| - | |
185 |
| - | |
186 |
| - | |
187 |
| - | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
188 | 192 |
| |
189 | 193 |
| |
190 | 194 |
| |
191 |
| - | |
| 195 | + | |
192 | 196 |
| |
193 | 197 |
| |
194 | 198 |
| |
195 | 199 |
| |
196 | 200 |
| |
197 |
| - | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
198 | 204 |
| |
199 | 205 |
| |
200 | 206 |
| |
201 |
| - | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
202 | 211 |
| |
203 | 212 |
| |
204 | 213 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
4 |
| - | |
| 4 | + | |
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 |
| - | |
| 18 | + | |
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
|
0 commit comments
Comments
(0)