forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit8d8dcea

Etsuro Fujita
Postpone generating tlists and EC members for inheritance dummy children.
Previously, in set_append_rel_size(), we generated tlists and EC membersfor dummy children for possible use by partition-wise join, even ifpartition-wise join was disabled or the top parent was not a partitionedtable, but adding such EC members causes noticeable planning speeddegradation for queries with certain kinds of join quals like"(foo.x + bar.y) = constant" where foo and bar are partitioned tables incases where there are lots of dummy children, as the EC members listsgrow huge, especially for the ECs derived from such join quals, whichmakes the search for the parent EC members in add_child_rel_equivalences()very time-consuming. Postpone the work until such children are actuallyinvolved in a partition-wise join.Reported-by: Sanyo CapobiangoAnalyzed-by: Justin Pryzby and Alvaro HerreraAuthor: Amit Langote, with a few additional changes by meReviewed-by: Ashutosh BapatBackpatch-through: v11 where partition-wise join was addedDiscussion:https://postgr.es/m/CAO698qZnrxoZu7MEtfiJmpmUtz3AVYFVnwzR%2BpqjF%3DrmKBTgpw%40mail.gmail.com1 parent31f3817 commit8d8dcea
2 files changed
+86
-39
lines changedLines changed: 39 additions & 39 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1018 | 1018 |
| |
1019 | 1019 |
| |
1020 | 1020 |
| |
1021 |
| - | |
1022 |
| - | |
1023 |
| - | |
1024 |
| - | |
1025 |
| - | |
1026 |
| - | |
1027 |
| - | |
1028 |
| - | |
1029 |
| - | |
1030 |
| - | |
1031 |
| - | |
1032 |
| - | |
1033 |
| - | |
1034 |
| - | |
1035 |
| - | |
1036 |
| - | |
1037 |
| - | |
1038 |
| - | |
1039 |
| - | |
1040 |
| - | |
1041 |
| - | |
1042 |
| - | |
1043 |
| - | |
1044 |
| - | |
1045 |
| - | |
1046 |
| - | |
1047 |
| - | |
1048 |
| - | |
1049 |
| - | |
1050 |
| - | |
1051 |
| - | |
1052 |
| - | |
1053 |
| - | |
1054 |
| - | |
1055 |
| - | |
1056 |
| - | |
| 1021 | + | |
| 1022 | + | |
| 1023 | + | |
| 1024 | + | |
| 1025 | + | |
1057 | 1026 |
| |
1058 | 1027 |
| |
1059 | 1028 |
| |
| |||
1187 | 1156 |
| |
1188 | 1157 |
| |
1189 | 1158 |
| |
1190 |
| - | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
1191 | 1169 |
| |
1192 | 1170 |
| |
1193 | 1171 |
| |
1194 | 1172 |
| |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + | |
| 1188 | + | |
1195 | 1189 |
| |
1196 | 1190 |
| |
1197 | 1191 |
| |
| |||
1204 | 1198 |
| |
1205 | 1199 |
| |
1206 | 1200 |
| |
| 1201 | + | |
| 1202 | + | |
| 1203 | + | |
| 1204 | + | |
| 1205 | + | |
| 1206 | + | |
| 1207 | + | |
1207 | 1208 |
| |
1208 |
| - | |
1209 |
| - | |
| 1209 | + | |
1210 | 1210 |
| |
1211 | 1211 |
| |
1212 | 1212 |
| |
|
Lines changed: 47 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
44 | 44 |
| |
45 | 45 |
| |
46 | 46 |
| |
| 47 | + | |
| 48 | + | |
47 | 49 |
| |
48 | 50 |
| |
49 | 51 |
| |
| |||
1315 | 1317 |
| |
1316 | 1318 |
| |
1317 | 1319 |
| |
| 1320 | + | |
| 1321 | + | |
1318 | 1322 |
| |
1319 | 1323 |
| |
1320 | 1324 |
| |
| |||
1379 | 1383 |
| |
1380 | 1384 |
| |
1381 | 1385 |
| |
| 1386 | + | |
| 1387 | + | |
| 1388 | + | |
| 1389 | + | |
| 1390 | + | |
| 1391 | + | |
| 1392 | + | |
| 1393 | + | |
| 1394 | + | |
| 1395 | + | |
| 1396 | + | |
| 1397 | + | |
| 1398 | + | |
| 1399 | + | |
| 1400 | + | |
| 1401 | + | |
| 1402 | + | |
| 1403 | + | |
| 1404 | + | |
| 1405 | + | |
| 1406 | + | |
1382 | 1407 |
| |
1383 | 1408 |
| |
1384 | 1409 |
| |
| |||
1420 | 1445 |
| |
1421 | 1446 |
| |
1422 | 1447 |
| |
| 1448 | + | |
| 1449 | + | |
| 1450 | + | |
| 1451 | + | |
| 1452 | + | |
| 1453 | + | |
| 1454 | + | |
| 1455 | + | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | + | |
| 1462 | + | |
| 1463 | + | |
| 1464 | + | |
| 1465 | + | |
| 1466 | + | |
| 1467 | + | |
| 1468 | + | |
| 1469 | + | |
1423 | 1470 |
| |
1424 | 1471 |
| |
1425 | 1472 |
| |
|
0 commit comments
Comments
(0)