forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit36f5594
committed
Fix computation of varnullingrels when const-folding field selection.
We can simplify FieldSelect on a whole-row Var into a plain Varfor the selected field. However, we should copy the whole-row Var'svarnullingrels when we do so, because the new Var is clearly nullableby exactly the same rels as the original. Failure to do this led toerrors like "wrong varnullingrels (b) (expected (b 3)) for Var 2/2".Richard Guo, per bug #18184 from Marian Krucina. Back-patch tov16 where varnullingrels was introduced.Discussion:https://postgr.es/m/18184-5868dd258782058e@postgresql.org1 parentb630d9d commit36f5594
3 files changed
+51
-6
lines changedLines changed: 13 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3296 | 3296 |
| |
3297 | 3297 |
| |
3298 | 3298 |
| |
3299 |
| - | |
3300 |
| - | |
3301 |
| - | |
3302 |
| - | |
3303 |
| - | |
3304 |
| - | |
| 3299 | + | |
| 3300 | + | |
| 3301 | + | |
| 3302 | + | |
| 3303 | + | |
| 3304 | + | |
| 3305 | + | |
| 3306 | + | |
| 3307 | + | |
| 3308 | + | |
| 3309 | + | |
| 3310 | + | |
| 3311 | + | |
3305 | 3312 |
| |
3306 | 3313 |
| |
3307 | 3314 |
| |
|
Lines changed: 26 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4133 | 4133 |
| |
4134 | 4134 |
| |
4135 | 4135 |
| |
| 4136 | + | |
| 4137 | + | |
| 4138 | + | |
| 4139 | + | |
| 4140 | + | |
| 4141 | + | |
| 4142 | + | |
| 4143 | + | |
| 4144 | + | |
| 4145 | + | |
| 4146 | + | |
| 4147 | + | |
| 4148 | + | |
| 4149 | + | |
| 4150 | + | |
| 4151 | + | |
| 4152 | + | |
| 4153 | + | |
| 4154 | + | |
| 4155 | + | |
| 4156 | + | |
| 4157 | + | |
| 4158 | + | |
| 4159 | + | |
| 4160 | + | |
| 4161 | + | |
4136 | 4162 |
| |
4137 | 4163 |
| |
4138 | 4164 |
| |
|
Lines changed: 12 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1381 | 1381 |
| |
1382 | 1382 |
| |
1383 | 1383 |
| |
| 1384 | + | |
| 1385 | + | |
| 1386 | + | |
| 1387 | + | |
| 1388 | + | |
| 1389 | + | |
| 1390 | + | |
| 1391 | + | |
| 1392 | + | |
| 1393 | + | |
| 1394 | + | |
| 1395 | + | |
1384 | 1396 |
| |
1385 | 1397 |
| |
1386 | 1398 |
| |
|
0 commit comments
Comments
(0)