forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit9ff79b9
committed
Fix up planner infrastructure to support LATERAL properly.
This patch takes care of a number of problems having to do with failureto choose valid join orders and incorrect handling of lateral referencespulled up from subqueries. Notable changes:* Add a LateralJoinInfo data structure similar to SpecialJoinInfo, torepresent join ordering constraints created by lateral references.(I first considered extending the SpecialJoinInfo structure, but thesemantics are different enough that a separate data structure seemsbetter.) Extend join_is_legal() and related functions to prevent tryingto form unworkable joins, and to ensure that we will consider joins thatsatisfy lateral references even if the joins would be clauseless.* Fill in the infrastructure needed for the last few types of relation scanpaths to support parameterization. We'd have wanted this eventuallyanyway, but it is necessary now because a relation that gets pulled up outof a UNION ALL subquery may acquire a reltargetlist containing lateralreferences, meaning that its paths *have* to be parameterized whether ornot we have any code that can push join quals down into the scan.* Compute data about lateral references early in query_planner(), and savein RelOptInfo nodes, to avoid repetitive calculations later.* Assorted corner-case bug fixes.There's probably still some bugs left, but this is a lot closer to beingreal than it was before.1 parentde87d47 commit9ff79b9
File tree
30 files changed
+817
-182
lines changed- src
- backend
- nodes
- optimizer
- path
- plan
- prep
- util
- rewrite
- include
- nodes
- optimizer
- test/regress
- expected
- sql
30 files changed
+817
-182
lines changedLines changed: 17 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1906 | 1906 |
| |
1907 | 1907 |
| |
1908 | 1908 |
| |
| 1909 | + | |
| 1910 | + | |
| 1911 | + | |
| 1912 | + | |
| 1913 | + | |
| 1914 | + | |
| 1915 | + | |
| 1916 | + | |
| 1917 | + | |
| 1918 | + | |
| 1919 | + | |
| 1920 | + | |
| 1921 | + | |
| 1922 | + | |
1909 | 1923 |
| |
1910 | 1924 |
| |
1911 | 1925 |
| |
| |||
4082 | 4096 |
| |
4083 | 4097 |
| |
4084 | 4098 |
| |
| 4099 | + | |
| 4100 | + | |
| 4101 | + | |
4085 | 4102 |
| |
4086 | 4103 |
| |
4087 | 4104 |
| |
|
Lines changed: 12 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
862 | 862 |
| |
863 | 863 |
| |
864 | 864 |
| |
| 865 | + | |
| 866 | + | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
865 | 874 |
| |
866 | 875 |
| |
867 | 876 |
| |
| |||
2646 | 2655 |
| |
2647 | 2656 |
| |
2648 | 2657 |
| |
| 2658 | + | |
| 2659 | + | |
| 2660 | + | |
2649 | 2661 |
| |
2650 | 2662 |
| |
2651 | 2663 |
| |
|
Lines changed: 16 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1699 | 1699 |
| |
1700 | 1700 |
| |
1701 | 1701 |
| |
| 1702 | + | |
1702 | 1703 |
| |
1703 | 1704 |
| |
1704 | 1705 |
| |
| |||
1713 | 1714 |
| |
1714 | 1715 |
| |
1715 | 1716 |
| |
| 1717 | + | |
1716 | 1718 |
| |
1717 | 1719 |
| |
1718 | 1720 |
| |
| |||
1743 | 1745 |
| |
1744 | 1746 |
| |
1745 | 1747 |
| |
| 1748 | + | |
| 1749 | + | |
1746 | 1750 |
| |
1747 | 1751 |
| |
1748 | 1752 |
| |
| |||
1890 | 1894 |
| |
1891 | 1895 |
| |
1892 | 1896 |
| |
| 1897 | + | |
| 1898 | + | |
| 1899 | + | |
| 1900 | + | |
| 1901 | + | |
| 1902 | + | |
| 1903 | + | |
| 1904 | + | |
| 1905 | + | |
1893 | 1906 |
| |
1894 | 1907 |
| |
1895 | 1908 |
| |
| |||
3036 | 3049 |
| |
3037 | 3050 |
| |
3038 | 3051 |
| |
| 3052 | + | |
| 3053 | + | |
| 3054 | + | |
3039 | 3055 |
| |
3040 | 3056 |
| |
3041 | 3057 |
| |
|
Lines changed: 55 additions & 52 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
268 | 268 |
| |
269 | 269 |
| |
270 | 270 |
| |
271 |
| - | |
272 |
| - | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
273 | 274 |
| |
274 | 275 |
| |
275 | 276 |
| |
| |||
376 | 377 |
| |
377 | 378 |
| |
378 | 379 |
| |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
379 | 390 |
| |
380 |
| - | |
| 391 | + | |
381 | 392 |
| |
382 | 393 |
| |
383 | 394 |
| |
| |||
536 | 547 |
| |
537 | 548 |
| |
538 | 549 |
| |
539 |
| - | |
540 |
| - | |
541 |
| - | |
542 |
| - | |
| 550 | + | |
| 551 | + | |
| 552 | + | |
| 553 | + | |
543 | 554 |
| |
544 | 555 |
| |
545 | 556 |
| |
| |||
610 | 621 |
| |
611 | 622 |
| |
612 | 623 |
| |
613 |
| - | |
| 624 | + | |
| 625 | + | |
614 | 626 |
| |
615 | 627 |
| |
616 | 628 |
| |
| |||
1054 | 1066 |
| |
1055 | 1067 |
| |
1056 | 1068 |
| |
1057 |
| - | |
| 1069 | + | |
| 1070 | + | |
1058 | 1071 |
| |
1059 |
| - | |
1060 |
| - | |
1061 |
| - | |
1062 |
| - | |
1063 |
| - | |
1064 |
| - | |
1065 |
| - | |
1066 |
| - | |
1067 |
| - | |
| 1072 | + | |
1068 | 1073 |
| |
1069 | 1074 |
| |
1070 | 1075 |
| |
| |||
1175 | 1180 |
| |
1176 | 1181 |
| |
1177 | 1182 |
| |
1178 |
| - | |
1179 |
| - | |
1180 |
| - | |
1181 |
| - | |
1182 | 1183 |
| |
1183 | 1184 |
| |
1184 | 1185 |
| |
1185 | 1186 |
| |
1186 | 1187 |
| |
1187 | 1188 |
| |
1188 | 1189 |
| |
1189 |
| - | |
1190 |
| - | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
1191 | 1193 |
| |
1192 |
| - | |
1193 |
| - | |
1194 |
| - | |
1195 |
| - | |
1196 |
| - | |
1197 |
| - | |
1198 |
| - | |
1199 |
| - | |
1200 |
| - | |
| 1194 | + | |
1201 | 1195 |
| |
1202 | 1196 |
| |
1203 | 1197 |
| |
| |||
1209 | 1203 |
| |
1210 | 1204 |
| |
1211 | 1205 |
| |
1212 |
| - | |
1213 |
| - | |
1214 |
| - | |
1215 |
| - | |
1216 | 1206 |
| |
1217 | 1207 |
| |
1218 | 1208 |
| |
1219 | 1209 |
| |
1220 | 1210 |
| |
1221 | 1211 |
| |
1222 | 1212 |
| |
1223 |
| - | |
1224 |
| - | |
| 1213 | + | |
| 1214 | + | |
| 1215 | + | |
1225 | 1216 |
| |
1226 |
| - | |
1227 |
| - | |
1228 |
| - | |
1229 |
| - | |
1230 |
| - | |
1231 |
| - | |
1232 |
| - | |
1233 |
| - | |
1234 |
| - | |
| 1217 | + | |
1235 | 1218 |
| |
1236 | 1219 |
| |
1237 | 1220 |
| |
| |||
1245 | 1228 |
| |
1246 | 1229 |
| |
1247 | 1230 |
| |
1248 |
| - | |
| 1231 | + | |
1249 | 1232 |
| |
1250 | 1233 |
| |
1251 | 1234 |
| |
| |||
1256 | 1239 |
| |
1257 | 1240 |
| |
1258 | 1241 |
| |
| 1242 | + | |
1259 | 1243 |
| |
1260 | 1244 |
| |
1261 | 1245 |
| |
| |||
1294 | 1278 |
| |
1295 | 1279 |
| |
1296 | 1280 |
| |
| 1281 | + | |
| 1282 | + | |
| 1283 | + | |
| 1284 | + | |
| 1285 | + | |
| 1286 | + | |
| 1287 | + | |
| 1288 | + | |
1297 | 1289 |
| |
1298 |
| - | |
| 1290 | + | |
1299 | 1291 |
| |
1300 | 1292 |
| |
1301 | 1293 |
| |
| |||
1306 | 1298 |
| |
1307 | 1299 |
| |
1308 | 1300 |
| |
1309 |
| - | |
| 1301 | + | |
1310 | 1302 |
| |
1311 | 1303 |
| |
1312 | 1304 |
| |
1313 | 1305 |
| |
1314 | 1306 |
| |
1315 | 1307 |
| |
1316 | 1308 |
| |
| 1309 | + | |
1317 | 1310 |
| |
1318 | 1311 |
| |
1319 | 1312 |
| |
| |||
1338 | 1331 |
| |
1339 | 1332 |
| |
1340 | 1333 |
| |
| 1334 | + | |
| 1335 | + | |
| 1336 | + | |
| 1337 | + | |
| 1338 | + | |
| 1339 | + | |
| 1340 | + | |
| 1341 | + | |
| 1342 | + | |
| 1343 | + | |
1341 | 1344 |
| |
1342 |
| - | |
| 1345 | + | |
1343 | 1346 |
| |
1344 | 1347 |
| |
1345 | 1348 |
| |
|
0 commit comments
Comments
(0)