forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commite0693fa
committed
Fix incorrect partition pruning logic for boolean partitioned tables
The partition pruning logic assumed that "b IS NOT true" was exactly thesame as "b IS FALSE". This is not the case when considering NULL values.Fix this so we correctly include any partition which could hold NULLvalues for the NOT case.Additionally, this fixes a bug in the partition pruning code which handlespartitioned tables partitioned like ((NOT boolcol)). This is a seeminglyunlikely schema design, and it was untested and also broken.Here we add tests for the ((NOT boolcol)) case and insert some actual datainto those tables and verify we do get the correct rows back when runningqueries. I've also adjusted the existing boolpart tests to include somedata and verify we get the correct results too.Both the bugs being fixed here could lead to incorrect query results withfewer rows being returned than expected. No additional rows could havebeen returned accidentally.In passing, remove needless ternary expression. It's more simple just topass !is_not_clause to makeBoolConst(). It makes sense to do this so thecode is consistent with the bug fix in the "else if" condition just below.David Kimura did submit a patch to fix the first of the issues here, butthat's not what's being committed here.Reported-by: David KimuraReviewed-by: Richard Guo, David KimuraDiscussion:https://postgr.es/m/CAHnPFjQ5qxs6J_p+g8=ww7GQvfn71_JE+Tygj0S7RdRci1uwPw@mail.gmail.comBackpatch-through: 11, all supported versions1 parentc7dc56b commite0693fa
File tree
3 files changed
+288
-31
lines changed- src
- backend/partitioning
- test/regress
- expected
- sql
3 files changed
+288
-31
lines changedLines changed: 35 additions & 19 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
201 | 201 |
| |
202 | 202 |
| |
203 | 203 |
| |
204 |
| - | |
| 204 | + | |
| 205 | + | |
205 | 206 |
| |
206 | 207 |
| |
207 | 208 |
| |
| |||
1809 | 1810 |
| |
1810 | 1811 |
| |
1811 | 1812 |
| |
| 1813 | + | |
1812 | 1814 |
| |
1813 | 1815 |
| |
1814 | 1816 |
| |
1815 | 1817 |
| |
1816 | 1818 |
| |
1817 |
| - | |
| 1819 | + | |
1818 | 1820 |
| |
1819 | 1821 |
| |
1820 | 1822 |
| |
| |||
1824 | 1826 |
| |
1825 | 1827 |
| |
1826 | 1828 |
| |
1827 |
| - | |
| 1829 | + | |
1828 | 1830 |
| |
1829 | 1831 |
| |
1830 | 1832 |
| |
| |||
3587 | 3589 |
| |
3588 | 3590 |
| |
3589 | 3591 |
| |
3590 |
| - | |
3591 |
| - | |
3592 |
| - | |
3593 |
| - | |
3594 |
| - | |
3595 |
| - | |
| 3592 | + | |
| 3593 | + | |
| 3594 | + | |
| 3595 | + | |
| 3596 | + | |
| 3597 | + | |
| 3598 | + | |
3596 | 3599 |
| |
3597 | 3600 |
| |
3598 | 3601 |
| |
3599 |
| - | |
| 3602 | + | |
3600 | 3603 |
| |
3601 | 3604 |
| |
3602 | 3605 |
| |
3603 | 3606 |
| |
| 3607 | + | |
3604 | 3608 |
| |
3605 | 3609 |
| |
3606 | 3610 |
| |
| |||
3623 | 3627 |
| |
3624 | 3628 |
| |
3625 | 3629 |
| |
3626 |
| - | |
3627 |
| - | |
3628 |
| - | |
3629 |
| - | |
3630 |
| - | |
| 3630 | + | |
| 3631 | + | |
| 3632 | + | |
| 3633 | + | |
| 3634 | + | |
| 3635 | + | |
| 3636 | + | |
| 3637 | + | |
| 3638 | + | |
| 3639 | + | |
| 3640 | + | |
| 3641 | + | |
| 3642 | + | |
| 3643 | + | |
| 3644 | + | |
| 3645 | + | |
| 3646 | + | |
| 3647 | + | |
| 3648 | + | |
3631 | 3649 |
| |
3632 | 3650 |
| |
3633 | 3651 |
| |
| |||
3642 | 3660 |
| |
3643 | 3661 |
| |
3644 | 3662 |
| |
3645 |
| - | |
3646 |
| - | |
3647 |
| - | |
| 3663 | + | |
3648 | 3664 |
| |
3649 |
| - | |
| 3665 | + | |
3650 | 3666 |
| |
3651 | 3667 |
| |
3652 | 3668 |
| |
|
Lines changed: 216 additions & 11 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1038 | 1038 |
| |
1039 | 1039 |
| |
1040 | 1040 |
| |
| 1041 | + | |
1041 | 1042 |
| |
1042 | 1043 |
| |
1043 | 1044 |
| |
| |||
1070 | 1071 |
| |
1071 | 1072 |
| |
1072 | 1073 |
| |
1073 |
| - | |
| 1074 | + | |
| 1075 | + | |
| 1076 | + | |
1074 | 1077 |
| |
1075 | 1078 |
| |
1076 |
| - | |
1077 |
| - | |
1078 |
| - | |
1079 |
| - | |
1080 |
| - | |
| 1079 | + | |
| 1080 | + | |
| 1081 | + | |
| 1082 | + | |
| 1083 | + | |
| 1084 | + | |
| 1085 | + | |
| 1086 | + | |
1081 | 1087 |
| |
1082 | 1088 |
| |
1083 |
| - | |
1084 |
| - | |
1085 |
| - | |
1086 |
| - | |
| 1089 | + | |
| 1090 | + | |
| 1091 | + | |
| 1092 | + | |
1087 | 1093 |
| |
1088 | 1094 |
| |
1089 | 1095 |
| |
| |||
1110 | 1116 |
| |
1111 | 1117 |
| |
1112 | 1118 |
| |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | + | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + | |
| 1195 | + | |
| 1196 | + | |
| 1197 | + | |
| 1198 | + | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + | |
| 1202 | + | |
| 1203 | + | |
| 1204 | + | |
| 1205 | + | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
| 1210 | + | |
| 1211 | + | |
| 1212 | + | |
| 1213 | + | |
| 1214 | + | |
| 1215 | + | |
| 1216 | + | |
| 1217 | + | |
| 1218 | + | |
| 1219 | + | |
| 1220 | + | |
| 1221 | + | |
| 1222 | + | |
| 1223 | + | |
| 1224 | + | |
| 1225 | + | |
| 1226 | + | |
| 1227 | + | |
| 1228 | + | |
| 1229 | + | |
| 1230 | + | |
| 1231 | + | |
| 1232 | + | |
| 1233 | + | |
| 1234 | + | |
| 1235 | + | |
| 1236 | + | |
| 1237 | + | |
| 1238 | + | |
| 1239 | + | |
| 1240 | + | |
| 1241 | + | |
| 1242 | + | |
| 1243 | + | |
| 1244 | + | |
| 1245 | + | |
| 1246 | + | |
| 1247 | + | |
| 1248 | + | |
| 1249 | + | |
| 1250 | + | |
| 1251 | + | |
| 1252 | + | |
| 1253 | + | |
| 1254 | + | |
| 1255 | + | |
| 1256 | + | |
| 1257 | + | |
| 1258 | + | |
| 1259 | + | |
| 1260 | + | |
| 1261 | + | |
| 1262 | + | |
| 1263 | + | |
| 1264 | + | |
| 1265 | + | |
| 1266 | + | |
| 1267 | + | |
| 1268 | + | |
| 1269 | + | |
| 1270 | + | |
| 1271 | + | |
| 1272 | + | |
| 1273 | + | |
| 1274 | + | |
| 1275 | + | |
| 1276 | + | |
| 1277 | + | |
| 1278 | + | |
| 1279 | + | |
| 1280 | + | |
| 1281 | + | |
| 1282 | + | |
| 1283 | + | |
| 1284 | + | |
| 1285 | + | |
| 1286 | + | |
| 1287 | + | |
| 1288 | + | |
| 1289 | + | |
| 1290 | + | |
| 1291 | + | |
| 1292 | + | |
| 1293 | + | |
| 1294 | + | |
| 1295 | + | |
| 1296 | + | |
| 1297 | + | |
| 1298 | + | |
| 1299 | + | |
| 1300 | + | |
| 1301 | + | |
| 1302 | + | |
| 1303 | + | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + | |
| 1308 | + | |
| 1309 | + | |
| 1310 | + | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + | |
| 1314 | + | |
| 1315 | + | |
| 1316 | + | |
| 1317 | + | |
1113 | 1318 |
| |
1114 | 1319 |
| |
1115 | 1320 |
| |
| |||
1530 | 1735 |
| |
1531 | 1736 |
| |
1532 | 1737 |
| |
1533 |
| - | |
| 1738 | + | |
1534 | 1739 |
| |
1535 | 1740 |
| |
1536 | 1741 |
| |
|
0 commit comments
Comments
(0)