summaryrefslogtreecommitdiffstats
path: root/src/test/regress/expected/partition_prune.out
blob: c5bc6c33f59ba559bd918fe1ec0326727e6cf4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
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
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
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
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
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
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
--
-- Test partitioning planner code
--
-- Force generic plans to be used for all prepared statements in this file.
set plan_cache_mode = force_generic_plan;
create table lp (a char) partition by list (a);
create table lp_default partition of lp default;
create table lp_ef partition of lp for values in ('e', 'f');
create table lp_ad partition of lp for values in ('a', 'd');
create table lp_bc partition of lp for values in ('b', 'c');
create table lp_g partition of lp for values in ('g');
create table lp_null partition of lp for values in (null);
explain (costs off) select * from lp;
            QUERY PLAN             
-----------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
   ->  Seq Scan on lp_bc lp_2
   ->  Seq Scan on lp_ef lp_3
   ->  Seq Scan on lp_g lp_4
   ->  Seq Scan on lp_null lp_5
   ->  Seq Scan on lp_default lp_6
(7 rows)

explain (costs off) select * from lp where a > 'a' and a < 'd';
                        QUERY PLAN                         
-----------------------------------------------------------
 Append
   ->  Seq Scan on lp_bc lp_1
         Filter: ((a > 'a'::bpchar) AND (a < 'd'::bpchar))
   ->  Seq Scan on lp_default lp_2
         Filter: ((a > 'a'::bpchar) AND (a < 'd'::bpchar))
(5 rows)

explain (costs off) select * from lp where a > 'a' and a <= 'd';
                         QUERY PLAN                         
------------------------------------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
         Filter: ((a > 'a'::bpchar) AND (a <= 'd'::bpchar))
   ->  Seq Scan on lp_bc lp_2
         Filter: ((a > 'a'::bpchar) AND (a <= 'd'::bpchar))
   ->  Seq Scan on lp_default lp_3
         Filter: ((a > 'a'::bpchar) AND (a <= 'd'::bpchar))
(7 rows)

explain (costs off) select * from lp where a = 'a';
         QUERY PLAN          
-----------------------------
 Seq Scan on lp_ad lp
   Filter: (a = 'a'::bpchar)
(2 rows)

explain (costs off) select * from lp where 'a' = a;	/* commuted */
         QUERY PLAN          
-----------------------------
 Seq Scan on lp_ad lp
   Filter: ('a'::bpchar = a)
(2 rows)

explain (costs off) select * from lp where a is not null;
            QUERY PLAN             
-----------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
         Filter: (a IS NOT NULL)
   ->  Seq Scan on lp_bc lp_2
         Filter: (a IS NOT NULL)
   ->  Seq Scan on lp_ef lp_3
         Filter: (a IS NOT NULL)
   ->  Seq Scan on lp_g lp_4
         Filter: (a IS NOT NULL)
   ->  Seq Scan on lp_default lp_5
         Filter: (a IS NOT NULL)
(11 rows)

explain (costs off) select * from lp where a is null;
       QUERY PLAN       
------------------------
 Seq Scan on lp_null lp
   Filter: (a IS NULL)
(2 rows)

explain (costs off) select * from lp where a = 'a' or a = 'c';
                        QUERY PLAN                        
----------------------------------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
         Filter: ((a = 'a'::bpchar) OR (a = 'c'::bpchar))
   ->  Seq Scan on lp_bc lp_2
         Filter: ((a = 'a'::bpchar) OR (a = 'c'::bpchar))
(5 rows)

explain (costs off) select * from lp where a is not null and (a = 'a' or a = 'c');
                                   QUERY PLAN                                   
--------------------------------------------------------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
         Filter: ((a IS NOT NULL) AND ((a = 'a'::bpchar) OR (a = 'c'::bpchar)))
   ->  Seq Scan on lp_bc lp_2
         Filter: ((a IS NOT NULL) AND ((a = 'a'::bpchar) OR (a = 'c'::bpchar)))
(5 rows)

explain (costs off) select * from lp where a <> 'g';
             QUERY PLAN             
------------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
         Filter: (a <> 'g'::bpchar)
   ->  Seq Scan on lp_bc lp_2
         Filter: (a <> 'g'::bpchar)
   ->  Seq Scan on lp_ef lp_3
         Filter: (a <> 'g'::bpchar)
   ->  Seq Scan on lp_default lp_4
         Filter: (a <> 'g'::bpchar)
(9 rows)

explain (costs off) select * from lp where a <> 'a' and a <> 'd';
                         QUERY PLAN                          
-------------------------------------------------------------
 Append
   ->  Seq Scan on lp_bc lp_1
         Filter: ((a <> 'a'::bpchar) AND (a <> 'd'::bpchar))
   ->  Seq Scan on lp_ef lp_2
         Filter: ((a <> 'a'::bpchar) AND (a <> 'd'::bpchar))
   ->  Seq Scan on lp_g lp_3
         Filter: ((a <> 'a'::bpchar) AND (a <> 'd'::bpchar))
   ->  Seq Scan on lp_default lp_4
         Filter: ((a <> 'a'::bpchar) AND (a <> 'd'::bpchar))
(9 rows)

explain (costs off) select * from lp where a not in ('a', 'd');
                   QUERY PLAN                   
------------------------------------------------
 Append
   ->  Seq Scan on lp_bc lp_1
         Filter: (a <> ALL ('{a,d}'::bpchar[]))
   ->  Seq Scan on lp_ef lp_2
         Filter: (a <> ALL ('{a,d}'::bpchar[]))
   ->  Seq Scan on lp_g lp_3
         Filter: (a <> ALL ('{a,d}'::bpchar[]))
   ->  Seq Scan on lp_default lp_4
         Filter: (a <> ALL ('{a,d}'::bpchar[]))
(9 rows)

-- collation matches the partitioning collation, pruning works
create table coll_pruning (a text collate "C") partition by list (a);
create table coll_pruning_a partition of coll_pruning for values in ('a');
create table coll_pruning_b partition of coll_pruning for values in ('b');
create table coll_pruning_def partition of coll_pruning default;
explain (costs off) select * from coll_pruning where a collate "C" = 'a' collate "C";
               QUERY PLAN                
-----------------------------------------
 Seq Scan on coll_pruning_a coll_pruning
   Filter: (a = 'a'::text COLLATE "C")
(2 rows)

-- collation doesn't match the partitioning collation, no pruning occurs
explain (costs off) select * from coll_pruning where a collate "POSIX" = 'a' collate "POSIX";
                       QUERY PLAN                        
---------------------------------------------------------
 Append
   ->  Seq Scan on coll_pruning_a coll_pruning_1
         Filter: ((a)::text = 'a'::text COLLATE "POSIX")
   ->  Seq Scan on coll_pruning_b coll_pruning_2
         Filter: ((a)::text = 'a'::text COLLATE "POSIX")
   ->  Seq Scan on coll_pruning_def coll_pruning_3
         Filter: ((a)::text = 'a'::text COLLATE "POSIX")
(7 rows)

create table rlp (a int, b varchar) partition by range (a);
create table rlp_default partition of rlp default partition by list (a);
create table rlp_default_default partition of rlp_default default;
create table rlp_default_10 partition of rlp_default for values in (10);
create table rlp_default_30 partition of rlp_default for values in (30);
create table rlp_default_null partition of rlp_default for values in (null);
create table rlp1 partition of rlp for values from (minvalue) to (1);
create table rlp2 partition of rlp for values from (1) to (10);
create table rlp3 (b varchar, a int) partition by list (b varchar_ops);
create table rlp3_default partition of rlp3 default;
create table rlp3abcd partition of rlp3 for values in ('ab', 'cd');
create table rlp3efgh partition of rlp3 for values in ('ef', 'gh');
create table rlp3nullxy partition of rlp3 for values in (null, 'xy');
alter table rlp attach partition rlp3 for values from (15) to (20);
create table rlp4 partition of rlp for values from (20) to (30) partition by range (a);
create table rlp4_default partition of rlp4 default;
create table rlp4_1 partition of rlp4 for values from (20) to (25);
create table rlp4_2 partition of rlp4 for values from (25) to (29);
create table rlp5 partition of rlp for values from (31) to (maxvalue) partition by range (a);
create table rlp5_default partition of rlp5 default;
create table rlp5_1 partition of rlp5 for values from (31) to (40);
explain (costs off) select * from rlp where a < 1;
      QUERY PLAN      
----------------------
 Seq Scan on rlp1 rlp
   Filter: (a < 1)
(2 rows)

explain (costs off) select * from rlp where 1 > a;	/* commuted */
      QUERY PLAN      
----------------------
 Seq Scan on rlp1 rlp
   Filter: (1 > a)
(2 rows)

explain (costs off) select * from rlp where a <= 1;
          QUERY PLAN          
------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: (a <= 1)
   ->  Seq Scan on rlp2 rlp_2
         Filter: (a <= 1)
(5 rows)

explain (costs off) select * from rlp where a = 1;
      QUERY PLAN      
----------------------
 Seq Scan on rlp2 rlp
   Filter: (a = 1)
(2 rows)

explain (costs off) select * from rlp where a = 1::bigint;		/* same as above */
         QUERY PLAN          
-----------------------------
 Seq Scan on rlp2 rlp
   Filter: (a = '1'::bigint)
(2 rows)

explain (costs off) select * from rlp where a = 1::numeric;		/* no pruning */
                  QUERY PLAN                   
-----------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp2 rlp_2
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp3abcd rlp_3
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp3efgh rlp_4
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp3nullxy rlp_5
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp3_default rlp_6
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp4_1 rlp_7
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp4_2 rlp_8
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp4_default rlp_9
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp5_1 rlp_10
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp5_default rlp_11
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp_default_10 rlp_12
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp_default_30 rlp_13
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp_default_null rlp_14
         Filter: ((a)::numeric = '1'::numeric)
   ->  Seq Scan on rlp_default_default rlp_15
         Filter: ((a)::numeric = '1'::numeric)
(31 rows)

explain (costs off) select * from rlp where a <= 10;
                 QUERY PLAN                  
---------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: (a <= 10)
   ->  Seq Scan on rlp2 rlp_2
         Filter: (a <= 10)
   ->  Seq Scan on rlp_default_10 rlp_3
         Filter: (a <= 10)
   ->  Seq Scan on rlp_default_default rlp_4
         Filter: (a <= 10)
(9 rows)

explain (costs off) select * from rlp where a > 10;
                  QUERY PLAN                  
----------------------------------------------
 Append
   ->  Seq Scan on rlp3abcd rlp_1
         Filter: (a > 10)
   ->  Seq Scan on rlp3efgh rlp_2
         Filter: (a > 10)
   ->  Seq Scan on rlp3nullxy rlp_3
         Filter: (a > 10)
   ->  Seq Scan on rlp3_default rlp_4
         Filter: (a > 10)
   ->  Seq Scan on rlp4_1 rlp_5
         Filter: (a > 10)
   ->  Seq Scan on rlp4_2 rlp_6
         Filter: (a > 10)
   ->  Seq Scan on rlp4_default rlp_7
         Filter: (a > 10)
   ->  Seq Scan on rlp5_1 rlp_8
         Filter: (a > 10)
   ->  Seq Scan on rlp5_default rlp_9
         Filter: (a > 10)
   ->  Seq Scan on rlp_default_30 rlp_10
         Filter: (a > 10)
   ->  Seq Scan on rlp_default_default rlp_11
         Filter: (a > 10)
(23 rows)

explain (costs off) select * from rlp where a < 15;
                 QUERY PLAN                  
---------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: (a < 15)
   ->  Seq Scan on rlp2 rlp_2
         Filter: (a < 15)
   ->  Seq Scan on rlp_default_10 rlp_3
         Filter: (a < 15)
   ->  Seq Scan on rlp_default_default rlp_4
         Filter: (a < 15)
(9 rows)

explain (costs off) select * from rlp where a <= 15;
                 QUERY PLAN                  
---------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: (a <= 15)
   ->  Seq Scan on rlp2 rlp_2
         Filter: (a <= 15)
   ->  Seq Scan on rlp3abcd rlp_3
         Filter: (a <= 15)
   ->  Seq Scan on rlp3efgh rlp_4
         Filter: (a <= 15)
   ->  Seq Scan on rlp3nullxy rlp_5
         Filter: (a <= 15)
   ->  Seq Scan on rlp3_default rlp_6
         Filter: (a <= 15)
   ->  Seq Scan on rlp_default_10 rlp_7
         Filter: (a <= 15)
   ->  Seq Scan on rlp_default_default rlp_8
         Filter: (a <= 15)
(17 rows)

explain (costs off) select * from rlp where a > 15 and b = 'ab';
                       QUERY PLAN                        
---------------------------------------------------------
 Append
   ->  Seq Scan on rlp3abcd rlp_1
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp4_1 rlp_2
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp4_2 rlp_3
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp4_default rlp_4
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp5_1 rlp_5
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp5_default rlp_6
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp_default_30 rlp_7
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp_default_default rlp_8
         Filter: ((a > 15) AND ((b)::text = 'ab'::text))
(17 rows)

explain (costs off) select * from rlp where a = 16;
              QUERY PLAN              
--------------------------------------
 Append
   ->  Seq Scan on rlp3abcd rlp_1
         Filter: (a = 16)
   ->  Seq Scan on rlp3efgh rlp_2
         Filter: (a = 16)
   ->  Seq Scan on rlp3nullxy rlp_3
         Filter: (a = 16)
   ->  Seq Scan on rlp3_default rlp_4
         Filter: (a = 16)
(9 rows)

explain (costs off) select * from rlp where a = 16 and b in ('not', 'in', 'here');
                              QUERY PLAN                              
----------------------------------------------------------------------
 Seq Scan on rlp3_default rlp
   Filter: ((a = 16) AND ((b)::text = ANY ('{not,in,here}'::text[])))
(2 rows)

explain (costs off) select * from rlp where a = 16 and b < 'ab';
                    QUERY PLAN                     
---------------------------------------------------
 Seq Scan on rlp3_default rlp
   Filter: (((b)::text < 'ab'::text) AND (a = 16))
(2 rows)

explain (costs off) select * from rlp where a = 16 and b <= 'ab';
                        QUERY PLAN                        
----------------------------------------------------------
 Append
   ->  Seq Scan on rlp3abcd rlp_1
         Filter: (((b)::text <= 'ab'::text) AND (a = 16))
   ->  Seq Scan on rlp3_default rlp_2
         Filter: (((b)::text <= 'ab'::text) AND (a = 16))
(5 rows)

explain (costs off) select * from rlp where a = 16 and b is null;
              QUERY PLAN              
--------------------------------------
 Seq Scan on rlp3nullxy rlp
   Filter: ((b IS NULL) AND (a = 16))
(2 rows)

explain (costs off) select * from rlp where a = 16 and b is not null;
                   QUERY PLAN                   
------------------------------------------------
 Append
   ->  Seq Scan on rlp3abcd rlp_1
         Filter: ((b IS NOT NULL) AND (a = 16))
   ->  Seq Scan on rlp3efgh rlp_2
         Filter: ((b IS NOT NULL) AND (a = 16))
   ->  Seq Scan on rlp3nullxy rlp_3
         Filter: ((b IS NOT NULL) AND (a = 16))
   ->  Seq Scan on rlp3_default rlp_4
         Filter: ((b IS NOT NULL) AND (a = 16))
(9 rows)

explain (costs off) select * from rlp where a is null;
            QUERY PLAN            
----------------------------------
 Seq Scan on rlp_default_null rlp
   Filter: (a IS NULL)
(2 rows)

explain (costs off) select * from rlp where a is not null;
                  QUERY PLAN                  
----------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp2 rlp_2
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp3abcd rlp_3
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp3efgh rlp_4
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp3nullxy rlp_5
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp3_default rlp_6
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp4_1 rlp_7
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp4_2 rlp_8
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp4_default rlp_9
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp5_1 rlp_10
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp5_default rlp_11
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp_default_10 rlp_12
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp_default_30 rlp_13
         Filter: (a IS NOT NULL)
   ->  Seq Scan on rlp_default_default rlp_14
         Filter: (a IS NOT NULL)
(29 rows)

explain (costs off) select * from rlp where a > 30;
                 QUERY PLAN                  
---------------------------------------------
 Append
   ->  Seq Scan on rlp5_1 rlp_1
         Filter: (a > 30)
   ->  Seq Scan on rlp5_default rlp_2
         Filter: (a > 30)
   ->  Seq Scan on rlp_default_default rlp_3
         Filter: (a > 30)
(7 rows)

explain (costs off) select * from rlp where a = 30;	/* only default is scanned */
           QUERY PLAN           
--------------------------------
 Seq Scan on rlp_default_30 rlp
   Filter: (a = 30)
(2 rows)

explain (costs off) select * from rlp where a <= 31;
                  QUERY PLAN                  
----------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: (a <= 31)
   ->  Seq Scan on rlp2 rlp_2
         Filter: (a <= 31)
   ->  Seq Scan on rlp3abcd rlp_3
         Filter: (a <= 31)
   ->  Seq Scan on rlp3efgh rlp_4
         Filter: (a <= 31)
   ->  Seq Scan on rlp3nullxy rlp_5
         Filter: (a <= 31)
   ->  Seq Scan on rlp3_default rlp_6
         Filter: (a <= 31)
   ->  Seq Scan on rlp4_1 rlp_7
         Filter: (a <= 31)
   ->  Seq Scan on rlp4_2 rlp_8
         Filter: (a <= 31)
   ->  Seq Scan on rlp4_default rlp_9
         Filter: (a <= 31)
   ->  Seq Scan on rlp5_1 rlp_10
         Filter: (a <= 31)
   ->  Seq Scan on rlp_default_10 rlp_11
         Filter: (a <= 31)
   ->  Seq Scan on rlp_default_30 rlp_12
         Filter: (a <= 31)
   ->  Seq Scan on rlp_default_default rlp_13
         Filter: (a <= 31)
(27 rows)

explain (costs off) select * from rlp where a = 1 or a = 7;
           QUERY PLAN           
--------------------------------
 Seq Scan on rlp2 rlp
   Filter: ((a = 1) OR (a = 7))
(2 rows)

explain (costs off) select * from rlp where a = 1 or b = 'ab';
                      QUERY PLAN                       
-------------------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp2 rlp_2
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp3abcd rlp_3
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp4_1 rlp_4
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp4_2 rlp_5
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp4_default rlp_6
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp5_1 rlp_7
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp5_default rlp_8
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp_default_10 rlp_9
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp_default_30 rlp_10
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp_default_null rlp_11
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
   ->  Seq Scan on rlp_default_default rlp_12
         Filter: ((a = 1) OR ((b)::text = 'ab'::text))
(25 rows)

explain (costs off) select * from rlp where a > 20 and a < 27;
               QUERY PLAN                
-----------------------------------------
 Append
   ->  Seq Scan on rlp4_1 rlp_1
         Filter: ((a > 20) AND (a < 27))
   ->  Seq Scan on rlp4_2 rlp_2
         Filter: ((a > 20) AND (a < 27))
(5 rows)

explain (costs off) select * from rlp where a = 29;
          QUERY PLAN          
------------------------------
 Seq Scan on rlp4_default rlp
   Filter: (a = 29)
(2 rows)

explain (costs off) select * from rlp where a >= 29;
                 QUERY PLAN                  
---------------------------------------------
 Append
   ->  Seq Scan on rlp4_default rlp_1
         Filter: (a >= 29)
   ->  Seq Scan on rlp5_1 rlp_2
         Filter: (a >= 29)
   ->  Seq Scan on rlp5_default rlp_3
         Filter: (a >= 29)
   ->  Seq Scan on rlp_default_30 rlp_4
         Filter: (a >= 29)
   ->  Seq Scan on rlp_default_default rlp_5
         Filter: (a >= 29)
(11 rows)

explain (costs off) select * from rlp where a < 1 or (a > 20 and a < 25);
                      QUERY PLAN                      
------------------------------------------------------
 Append
   ->  Seq Scan on rlp1 rlp_1
         Filter: ((a < 1) OR ((a > 20) AND (a < 25)))
   ->  Seq Scan on rlp4_1 rlp_2
         Filter: ((a < 1) OR ((a > 20) AND (a < 25)))
(5 rows)

-- where clause contradicts sub-partition's constraint
explain (costs off) select * from rlp where a = 20 or a = 40;
               QUERY PLAN               
----------------------------------------
 Append
   ->  Seq Scan on rlp4_1 rlp_1
         Filter: ((a = 20) OR (a = 40))
   ->  Seq Scan on rlp5_default rlp_2
         Filter: ((a = 20) OR (a = 40))
(5 rows)

explain (costs off) select * from rlp3 where a = 20;   /* empty */
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

-- redundant clauses are eliminated
explain (costs off) select * from rlp where a > 1 and a = 10;	/* only default */
            QUERY PLAN            
----------------------------------
 Seq Scan on rlp_default_10 rlp
   Filter: ((a > 1) AND (a = 10))
(2 rows)

explain (costs off) select * from rlp where a > 1 and a >=15;	/* rlp3 onwards, including default */
                  QUERY PLAN                  
----------------------------------------------
 Append
   ->  Seq Scan on rlp3abcd rlp_1
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp3efgh rlp_2
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp3nullxy rlp_3
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp3_default rlp_4
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp4_1 rlp_5
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp4_2 rlp_6
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp4_default rlp_7
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp5_1 rlp_8
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp5_default rlp_9
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp_default_30 rlp_10
         Filter: ((a > 1) AND (a >= 15))
   ->  Seq Scan on rlp_default_default rlp_11
         Filter: ((a > 1) AND (a >= 15))
(23 rows)

explain (costs off) select * from rlp where a = 1 and a = 3;	/* empty */
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from rlp where (a = 1 and a = 3) or (a > 1 and a = 15);
                            QUERY PLAN                             
-------------------------------------------------------------------
 Append
   ->  Seq Scan on rlp2 rlp_1
         Filter: (((a = 1) AND (a = 3)) OR ((a > 1) AND (a = 15)))
   ->  Seq Scan on rlp3abcd rlp_2
         Filter: (((a = 1) AND (a = 3)) OR ((a > 1) AND (a = 15)))
   ->  Seq Scan on rlp3efgh rlp_3
         Filter: (((a = 1) AND (a = 3)) OR ((a > 1) AND (a = 15)))
   ->  Seq Scan on rlp3nullxy rlp_4
         Filter: (((a = 1) AND (a = 3)) OR ((a > 1) AND (a = 15)))
   ->  Seq Scan on rlp3_default rlp_5
         Filter: (((a = 1) AND (a = 3)) OR ((a > 1) AND (a = 15)))
(11 rows)

-- multi-column keys
create table mc3p (a int, b int, c int) partition by range (a, abs(b), c);
create table mc3p_default partition of mc3p default;
create table mc3p0 partition of mc3p for values from (minvalue, minvalue, minvalue) to (1, 1, 1);
create table mc3p1 partition of mc3p for values from (1, 1, 1) to (10, 5, 10);
create table mc3p2 partition of mc3p for values from (10, 5, 10) to (10, 10, 10);
create table mc3p3 partition of mc3p for values from (10, 10, 10) to (10, 10, 20);
create table mc3p4 partition of mc3p for values from (10, 10, 20) to (10, maxvalue, maxvalue);
create table mc3p5 partition of mc3p for values from (11, 1, 1) to (20, 10, 10);
create table mc3p6 partition of mc3p for values from (20, 10, 10) to (20, 20, 20);
create table mc3p7 partition of mc3p for values from (20, 20, 20) to (maxvalue, maxvalue, maxvalue);
explain (costs off) select * from mc3p where a = 1;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: (a = 1)
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: (a = 1)
   ->  Seq Scan on mc3p_default mc3p_3
         Filter: (a = 1)
(7 rows)

explain (costs off) select * from mc3p where a = 1 and abs(b) < 1;
                 QUERY PLAN                 
--------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: ((a = 1) AND (abs(b) < 1))
   ->  Seq Scan on mc3p_default mc3p_2
         Filter: ((a = 1) AND (abs(b) < 1))
(5 rows)

explain (costs off) select * from mc3p where a = 1 and abs(b) = 1;
                 QUERY PLAN                 
--------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: ((a = 1) AND (abs(b) = 1))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: ((a = 1) AND (abs(b) = 1))
   ->  Seq Scan on mc3p_default mc3p_3
         Filter: ((a = 1) AND (abs(b) = 1))
(7 rows)

explain (costs off) select * from mc3p where a = 1 and abs(b) = 1 and c < 8;
                       QUERY PLAN                       
--------------------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: ((c < 8) AND (a = 1) AND (abs(b) = 1))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: ((c < 8) AND (a = 1) AND (abs(b) = 1))
(5 rows)

explain (costs off) select * from mc3p where a = 10 and abs(b) between 5 and 35;
                           QUERY PLAN                            
-----------------------------------------------------------------
 Append
   ->  Seq Scan on mc3p1 mc3p_1
         Filter: ((a = 10) AND (abs(b) >= 5) AND (abs(b) <= 35))
   ->  Seq Scan on mc3p2 mc3p_2
         Filter: ((a = 10) AND (abs(b) >= 5) AND (abs(b) <= 35))
   ->  Seq Scan on mc3p3 mc3p_3
         Filter: ((a = 10) AND (abs(b) >= 5) AND (abs(b) <= 35))
   ->  Seq Scan on mc3p4 mc3p_4
         Filter: ((a = 10) AND (abs(b) >= 5) AND (abs(b) <= 35))
   ->  Seq Scan on mc3p_default mc3p_5
         Filter: ((a = 10) AND (abs(b) >= 5) AND (abs(b) <= 35))
(11 rows)

explain (costs off) select * from mc3p where a > 10;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc3p5 mc3p_1
         Filter: (a > 10)
   ->  Seq Scan on mc3p6 mc3p_2
         Filter: (a > 10)
   ->  Seq Scan on mc3p7 mc3p_3
         Filter: (a > 10)
   ->  Seq Scan on mc3p_default mc3p_4
         Filter: (a > 10)
(9 rows)

explain (costs off) select * from mc3p where a >= 10;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc3p1 mc3p_1
         Filter: (a >= 10)
   ->  Seq Scan on mc3p2 mc3p_2
         Filter: (a >= 10)
   ->  Seq Scan on mc3p3 mc3p_3
         Filter: (a >= 10)
   ->  Seq Scan on mc3p4 mc3p_4
         Filter: (a >= 10)
   ->  Seq Scan on mc3p5 mc3p_5
         Filter: (a >= 10)
   ->  Seq Scan on mc3p6 mc3p_6
         Filter: (a >= 10)
   ->  Seq Scan on mc3p7 mc3p_7
         Filter: (a >= 10)
   ->  Seq Scan on mc3p_default mc3p_8
         Filter: (a >= 10)
(17 rows)

explain (costs off) select * from mc3p where a < 10;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: (a < 10)
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: (a < 10)
   ->  Seq Scan on mc3p_default mc3p_3
         Filter: (a < 10)
(7 rows)

explain (costs off) select * from mc3p where a <= 10 and abs(b) < 10;
                  QUERY PLAN                   
-----------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: ((a <= 10) AND (abs(b) < 10))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: ((a <= 10) AND (abs(b) < 10))
   ->  Seq Scan on mc3p2 mc3p_3
         Filter: ((a <= 10) AND (abs(b) < 10))
   ->  Seq Scan on mc3p_default mc3p_4
         Filter: ((a <= 10) AND (abs(b) < 10))
(9 rows)

explain (costs off) select * from mc3p where a = 11 and abs(b) = 0;
              QUERY PLAN               
---------------------------------------
 Seq Scan on mc3p_default mc3p
   Filter: ((a = 11) AND (abs(b) = 0))
(2 rows)

explain (costs off) select * from mc3p where a = 20 and abs(b) = 10 and c = 100;
                      QUERY PLAN                      
------------------------------------------------------
 Seq Scan on mc3p6 mc3p
   Filter: ((a = 20) AND (c = 100) AND (abs(b) = 10))
(2 rows)

explain (costs off) select * from mc3p where a > 20;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc3p7 mc3p_1
         Filter: (a > 20)
   ->  Seq Scan on mc3p_default mc3p_2
         Filter: (a > 20)
(5 rows)

explain (costs off) select * from mc3p where a >= 20;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc3p5 mc3p_1
         Filter: (a >= 20)
   ->  Seq Scan on mc3p6 mc3p_2
         Filter: (a >= 20)
   ->  Seq Scan on mc3p7 mc3p_3
         Filter: (a >= 20)
   ->  Seq Scan on mc3p_default mc3p_4
         Filter: (a >= 20)
(9 rows)

explain (costs off) select * from mc3p where (a = 1 and abs(b) = 1 and c = 1) or (a = 10 and abs(b) = 5 and c = 10) or (a > 11 and a < 20);
                                                           QUERY PLAN                                                            
---------------------------------------------------------------------------------------------------------------------------------
 Append
   ->  Seq Scan on mc3p1 mc3p_1
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)))
   ->  Seq Scan on mc3p2 mc3p_2
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)))
   ->  Seq Scan on mc3p5 mc3p_3
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)))
   ->  Seq Scan on mc3p_default mc3p_4
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)))
(9 rows)

explain (costs off) select * from mc3p where (a = 1 and abs(b) = 1 and c = 1) or (a = 10 and abs(b) = 5 and c = 10) or (a > 11 and a < 20) or a < 1;
                                                                 QUERY PLAN                                                                 
--------------------------------------------------------------------------------------------------------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1))
   ->  Seq Scan on mc3p2 mc3p_3
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1))
   ->  Seq Scan on mc3p5 mc3p_4
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1))
   ->  Seq Scan on mc3p_default mc3p_5
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1))
(11 rows)

explain (costs off) select * from mc3p where (a = 1 and abs(b) = 1 and c = 1) or (a = 10 and abs(b) = 5 and c = 10) or (a > 11 and a < 20) or a < 1 or a = 1;
                                                                      QUERY PLAN                                                                       
-------------------------------------------------------------------------------------------------------------------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1) OR (a = 1))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1) OR (a = 1))
   ->  Seq Scan on mc3p2 mc3p_3
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1) OR (a = 1))
   ->  Seq Scan on mc3p5 mc3p_4
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1) OR (a = 1))
   ->  Seq Scan on mc3p_default mc3p_5
         Filter: (((a = 1) AND (abs(b) = 1) AND (c = 1)) OR ((a = 10) AND (abs(b) = 5) AND (c = 10)) OR ((a > 11) AND (a < 20)) OR (a < 1) OR (a = 1))
(11 rows)

explain (costs off) select * from mc3p where a = 1 or abs(b) = 1 or c = 1;
                      QUERY PLAN                      
------------------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p2 mc3p_3
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p3 mc3p_4
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p4 mc3p_5
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p5 mc3p_6
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p6 mc3p_7
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p7 mc3p_8
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
   ->  Seq Scan on mc3p_default mc3p_9
         Filter: ((a = 1) OR (abs(b) = 1) OR (c = 1))
(19 rows)

explain (costs off) select * from mc3p where (a = 1 and abs(b) = 1) or (a = 10 and abs(b) = 10);
                                  QUERY PLAN                                  
------------------------------------------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 10)))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 10)))
   ->  Seq Scan on mc3p2 mc3p_3
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 10)))
   ->  Seq Scan on mc3p3 mc3p_4
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 10)))
   ->  Seq Scan on mc3p4 mc3p_5
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 10)))
   ->  Seq Scan on mc3p_default mc3p_6
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 10)))
(13 rows)

explain (costs off) select * from mc3p where (a = 1 and abs(b) = 1) or (a = 10 and abs(b) = 9);
                                 QUERY PLAN                                  
-----------------------------------------------------------------------------
 Append
   ->  Seq Scan on mc3p0 mc3p_1
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 9)))
   ->  Seq Scan on mc3p1 mc3p_2
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 9)))
   ->  Seq Scan on mc3p2 mc3p_3
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 9)))
   ->  Seq Scan on mc3p_default mc3p_4
         Filter: (((a = 1) AND (abs(b) = 1)) OR ((a = 10) AND (abs(b) = 9)))
(9 rows)

-- a simpler multi-column keys case
create table mc2p (a int, b int) partition by range (a, b);
create table mc2p_default partition of mc2p default;
create table mc2p0 partition of mc2p for values from (minvalue, minvalue) to (1, minvalue);
create table mc2p1 partition of mc2p for values from (1, minvalue) to (1, 1);
create table mc2p2 partition of mc2p for values from (1, 1) to (2, minvalue);
create table mc2p3 partition of mc2p for values from (2, minvalue) to (2, 1);
create table mc2p4 partition of mc2p for values from (2, 1) to (2, maxvalue);
create table mc2p5 partition of mc2p for values from (2, maxvalue) to (maxvalue, maxvalue);
explain (costs off) select * from mc2p where a < 2;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc2p0 mc2p_1
         Filter: (a < 2)
   ->  Seq Scan on mc2p1 mc2p_2
         Filter: (a < 2)
   ->  Seq Scan on mc2p2 mc2p_3
         Filter: (a < 2)
   ->  Seq Scan on mc2p_default mc2p_4
         Filter: (a < 2)
(9 rows)

explain (costs off) select * from mc2p where a = 2 and b < 1;
           QUERY PLAN            
---------------------------------
 Seq Scan on mc2p3 mc2p
   Filter: ((b < 1) AND (a = 2))
(2 rows)

explain (costs off) select * from mc2p where a > 1;
              QUERY PLAN               
---------------------------------------
 Append
   ->  Seq Scan on mc2p2 mc2p_1
         Filter: (a > 1)
   ->  Seq Scan on mc2p3 mc2p_2
         Filter: (a > 1)
   ->  Seq Scan on mc2p4 mc2p_3
         Filter: (a > 1)
   ->  Seq Scan on mc2p5 mc2p_4
         Filter: (a > 1)
   ->  Seq Scan on mc2p_default mc2p_5
         Filter: (a > 1)
(11 rows)

explain (costs off) select * from mc2p where a = 1 and b > 1;
           QUERY PLAN            
---------------------------------
 Seq Scan on mc2p2 mc2p
   Filter: ((b > 1) AND (a = 1))
(2 rows)

-- all partitions but the default one should be pruned
explain (costs off) select * from mc2p where a = 1 and b is null;
             QUERY PLAN              
-------------------------------------
 Seq Scan on mc2p_default mc2p
   Filter: ((b IS NULL) AND (a = 1))
(2 rows)

explain (costs off) select * from mc2p where a is null and b is null;
               QUERY PLAN                
-----------------------------------------
 Seq Scan on mc2p_default mc2p
   Filter: ((a IS NULL) AND (b IS NULL))
(2 rows)

explain (costs off) select * from mc2p where a is null and b = 1;
             QUERY PLAN              
-------------------------------------
 Seq Scan on mc2p_default mc2p
   Filter: ((a IS NULL) AND (b = 1))
(2 rows)

explain (costs off) select * from mc2p where a is null;
          QUERY PLAN           
-------------------------------
 Seq Scan on mc2p_default mc2p
   Filter: (a IS NULL)
(2 rows)

explain (costs off) select * from mc2p where b is null;
          QUERY PLAN           
-------------------------------
 Seq Scan on mc2p_default mc2p
   Filter: (b IS NULL)
(2 rows)

-- boolean partitioning
create table boolpart (a bool) partition by list (a);
create table boolpart_default partition of boolpart default;
create table boolpart_t partition of boolpart for values in ('true');
create table boolpart_f partition of boolpart for values in ('false');
insert into boolpart values (true), (false), (null);
explain (costs off) select * from boolpart where a in (true, false);
                   QUERY PLAN                   
------------------------------------------------
 Append
   ->  Seq Scan on boolpart_f boolpart_1
         Filter: (a = ANY ('{t,f}'::boolean[]))
   ->  Seq Scan on boolpart_t boolpart_2
         Filter: (a = ANY ('{t,f}'::boolean[]))
(5 rows)

explain (costs off) select * from boolpart where a = false;
           QUERY PLAN            
---------------------------------
 Seq Scan on boolpart_f boolpart
   Filter: (NOT a)
(2 rows)

explain (costs off) select * from boolpart where not a = false;
           QUERY PLAN            
---------------------------------
 Seq Scan on boolpart_t boolpart
   Filter: a
(2 rows)

explain (costs off) select * from boolpart where a is true or a is not true;
                    QUERY PLAN                    
--------------------------------------------------
 Append
   ->  Seq Scan on boolpart_f boolpart_1
         Filter: ((a IS TRUE) OR (a IS NOT TRUE))
   ->  Seq Scan on boolpart_t boolpart_2
         Filter: ((a IS TRUE) OR (a IS NOT TRUE))
   ->  Seq Scan on boolpart_default boolpart_3
         Filter: ((a IS TRUE) OR (a IS NOT TRUE))
(7 rows)

explain (costs off) select * from boolpart where a is not true;
                  QUERY PLAN                   
-----------------------------------------------
 Append
   ->  Seq Scan on boolpart_f boolpart_1
         Filter: (a IS NOT TRUE)
   ->  Seq Scan on boolpart_default boolpart_2
         Filter: (a IS NOT TRUE)
(5 rows)

explain (costs off) select * from boolpart where a is not true and a is not false;
                    QUERY PLAN                    
--------------------------------------------------
 Seq Scan on boolpart_default boolpart
   Filter: ((a IS NOT TRUE) AND (a IS NOT FALSE))
(2 rows)

explain (costs off) select * from boolpart where a is unknown;
                  QUERY PLAN                   
-----------------------------------------------
 Append
   ->  Seq Scan on boolpart_f boolpart_1
         Filter: (a IS UNKNOWN)
   ->  Seq Scan on boolpart_t boolpart_2
         Filter: (a IS UNKNOWN)
   ->  Seq Scan on boolpart_default boolpart_3
         Filter: (a IS UNKNOWN)
(7 rows)

explain (costs off) select * from boolpart where a is not unknown;
                  QUERY PLAN                   
-----------------------------------------------
 Append
   ->  Seq Scan on boolpart_f boolpart_1
         Filter: (a IS NOT UNKNOWN)
   ->  Seq Scan on boolpart_t boolpart_2
         Filter: (a IS NOT UNKNOWN)
   ->  Seq Scan on boolpart_default boolpart_3
         Filter: (a IS NOT UNKNOWN)
(7 rows)

select * from boolpart where a in (true, false);
 a 
---
 f
 t
(2 rows)

select * from boolpart where a = false;
 a 
---
 f
(1 row)

select * from boolpart where not a = false;
 a 
---
 t
(1 row)

select * from boolpart where a is true or a is not true;
 a 
---
 f
 t
 
(3 rows)

select * from boolpart where a is not true;
 a 
---
 f
 
(2 rows)

select * from boolpart where a is not true and a is not false;
 a 
---
 
(1 row)

select * from boolpart where a is unknown;
 a 
---
 
(1 row)

select * from boolpart where a is not unknown;
 a 
---
 f
 t
(2 rows)

-- inverse boolean partitioning - a seemingly unlikely design, but we've got
-- code for it, so we'd better test it.
create table iboolpart (a bool) partition by list ((not a));
create table iboolpart_default partition of iboolpart default;
create table iboolpart_f partition of iboolpart for values in ('true');
create table iboolpart_t partition of iboolpart for values in ('false');
insert into iboolpart values (true), (false), (null);
explain (costs off) select * from iboolpart where a in (true, false);
                   QUERY PLAN                    
-------------------------------------------------
 Append
   ->  Seq Scan on iboolpart_t iboolpart_1
         Filter: (a = ANY ('{t,f}'::boolean[]))
   ->  Seq Scan on iboolpart_f iboolpart_2
         Filter: (a = ANY ('{t,f}'::boolean[]))
   ->  Seq Scan on iboolpart_default iboolpart_3
         Filter: (a = ANY ('{t,f}'::boolean[]))
(7 rows)

explain (costs off) select * from iboolpart where a = false;
            QUERY PLAN             
-----------------------------------
 Seq Scan on iboolpart_f iboolpart
   Filter: (NOT a)
(2 rows)

explain (costs off) select * from iboolpart where not a = false;
            QUERY PLAN             
-----------------------------------
 Seq Scan on iboolpart_t iboolpart
   Filter: a
(2 rows)

explain (costs off) select * from iboolpart where a is true or a is not true;
                    QUERY PLAN                    
--------------------------------------------------
 Append
   ->  Seq Scan on iboolpart_t iboolpart_1
         Filter: ((a IS TRUE) OR (a IS NOT TRUE))
   ->  Seq Scan on iboolpart_f iboolpart_2
         Filter: ((a IS TRUE) OR (a IS NOT TRUE))
   ->  Seq Scan on iboolpart_default iboolpart_3
         Filter: ((a IS TRUE) OR (a IS NOT TRUE))
(7 rows)

explain (costs off) select * from iboolpart where a is not true;
                   QUERY PLAN                    
-------------------------------------------------
 Append
   ->  Seq Scan on iboolpart_t iboolpart_1
         Filter: (a IS NOT TRUE)
   ->  Seq Scan on iboolpart_f iboolpart_2
         Filter: (a IS NOT TRUE)
   ->  Seq Scan on iboolpart_default iboolpart_3
         Filter: (a IS NOT TRUE)
(7 rows)

explain (costs off) select * from iboolpart where a is not true and a is not false;
                       QUERY PLAN                       
--------------------------------------------------------
 Append
   ->  Seq Scan on iboolpart_t iboolpart_1
         Filter: ((a IS NOT TRUE) AND (a IS NOT FALSE))
   ->  Seq Scan on iboolpart_f iboolpart_2
         Filter: ((a IS NOT TRUE) AND (a IS NOT FALSE))
   ->  Seq Scan on iboolpart_default iboolpart_3
         Filter: ((a IS NOT TRUE) AND (a IS NOT FALSE))
(7 rows)

explain (costs off) select * from iboolpart where a is unknown;
                   QUERY PLAN                    
-------------------------------------------------
 Append
   ->  Seq Scan on iboolpart_t iboolpart_1
         Filter: (a IS UNKNOWN)
   ->  Seq Scan on iboolpart_f iboolpart_2
         Filter: (a IS UNKNOWN)
   ->  Seq Scan on iboolpart_default iboolpart_3
         Filter: (a IS UNKNOWN)
(7 rows)

explain (costs off) select * from iboolpart where a is not unknown;
                   QUERY PLAN                    
-------------------------------------------------
 Append
   ->  Seq Scan on iboolpart_t iboolpart_1
         Filter: (a IS NOT UNKNOWN)
   ->  Seq Scan on iboolpart_f iboolpart_2
         Filter: (a IS NOT UNKNOWN)
   ->  Seq Scan on iboolpart_default iboolpart_3
         Filter: (a IS NOT UNKNOWN)
(7 rows)

select * from iboolpart where a in (true, false);
 a 
---
 t
 f
(2 rows)

select * from iboolpart where a = false;
 a 
---
 f
(1 row)

select * from iboolpart where not a = false;
 a 
---
 t
(1 row)

select * from iboolpart where a is true or a is not true;
 a 
---
 t
 f
 
(3 rows)

select * from iboolpart where a is not true;
 a 
---
 f
 
(2 rows)

select * from iboolpart where a is not true and a is not false;
 a 
---
 
(1 row)

select * from iboolpart where a is unknown;
 a 
---
 
(1 row)

select * from iboolpart where a is not unknown;
 a 
---
 t
 f
(2 rows)

create table boolrangep (a bool, b bool, c int) partition by range (a,b,c);
create table boolrangep_tf partition of boolrangep for values from ('true', 'false', 0) to ('true', 'false', 100);
create table boolrangep_ft partition of boolrangep for values from ('false', 'true', 0) to ('false', 'true', 100);
create table boolrangep_ff1 partition of boolrangep for values from ('false', 'false', 0) to ('false', 'false', 50);
create table boolrangep_ff2 partition of boolrangep for values from ('false', 'false', 50) to ('false', 'false', 100);
-- try a more complex case that's been known to trip up pruning in the past
explain (costs off)  select * from boolrangep where not a and not b and c = 25;
                  QUERY PLAN                  
----------------------------------------------
 Seq Scan on boolrangep_ff1 boolrangep
   Filter: ((NOT a) AND (NOT b) AND (c = 25))
(2 rows)

-- test scalar-to-array operators
create table coercepart (a varchar) partition by list (a);
create table coercepart_ab partition of coercepart for values in ('ab');
create table coercepart_bc partition of coercepart for values in ('bc');
create table coercepart_cd partition of coercepart for values in ('cd');
explain (costs off) select * from coercepart where a in ('ab', to_char(125, '999'));
                                                          QUERY PLAN                                                          
------------------------------------------------------------------------------------------------------------------------------
 Append
   ->  Seq Scan on coercepart_ab coercepart_1
         Filter: ((a)::text = ANY ((ARRAY['ab'::character varying, (to_char(125, '999'::text))::character varying])::text[]))
   ->  Seq Scan on coercepart_bc coercepart_2
         Filter: ((a)::text = ANY ((ARRAY['ab'::character varying, (to_char(125, '999'::text))::character varying])::text[]))
   ->  Seq Scan on coercepart_cd coercepart_3
         Filter: ((a)::text = ANY ((ARRAY['ab'::character varying, (to_char(125, '999'::text))::character varying])::text[]))
(7 rows)

explain (costs off) select * from coercepart where a ~ any ('{ab}');
                     QUERY PLAN                     
----------------------------------------------------
 Append
   ->  Seq Scan on coercepart_ab coercepart_1
         Filter: ((a)::text ~ ANY ('{ab}'::text[]))
   ->  Seq Scan on coercepart_bc coercepart_2
         Filter: ((a)::text ~ ANY ('{ab}'::text[]))
   ->  Seq Scan on coercepart_cd coercepart_3
         Filter: ((a)::text ~ ANY ('{ab}'::text[]))
(7 rows)

explain (costs off) select * from coercepart where a !~ all ('{ab}');
                     QUERY PLAN                      
-----------------------------------------------------
 Append
   ->  Seq Scan on coercepart_ab coercepart_1
         Filter: ((a)::text !~ ALL ('{ab}'::text[]))
   ->  Seq Scan on coercepart_bc coercepart_2
         Filter: ((a)::text !~ ALL ('{ab}'::text[]))
   ->  Seq Scan on coercepart_cd coercepart_3
         Filter: ((a)::text !~ ALL ('{ab}'::text[]))
(7 rows)

explain (costs off) select * from coercepart where a ~ any ('{ab,bc}');
                      QUERY PLAN                       
-------------------------------------------------------
 Append
   ->  Seq Scan on coercepart_ab coercepart_1
         Filter: ((a)::text ~ ANY ('{ab,bc}'::text[]))
   ->  Seq Scan on coercepart_bc coercepart_2
         Filter: ((a)::text ~ ANY ('{ab,bc}'::text[]))
   ->  Seq Scan on coercepart_cd coercepart_3
         Filter: ((a)::text ~ ANY ('{ab,bc}'::text[]))
(7 rows)

explain (costs off) select * from coercepart where a !~ all ('{ab,bc}');
                       QUERY PLAN                       
--------------------------------------------------------
 Append
   ->  Seq Scan on coercepart_ab coercepart_1
         Filter: ((a)::text !~ ALL ('{ab,bc}'::text[]))
   ->  Seq Scan on coercepart_bc coercepart_2
         Filter: ((a)::text !~ ALL ('{ab,bc}'::text[]))
   ->  Seq Scan on coercepart_cd coercepart_3
         Filter: ((a)::text !~ ALL ('{ab,bc}'::text[]))
(7 rows)

explain (costs off) select * from coercepart where a = any ('{ab,bc}');
                      QUERY PLAN                       
-------------------------------------------------------
 Append
   ->  Seq Scan on coercepart_ab coercepart_1
         Filter: ((a)::text = ANY ('{ab,bc}'::text[]))
   ->  Seq Scan on coercepart_bc coercepart_2
         Filter: ((a)::text = ANY ('{ab,bc}'::text[]))
(5 rows)

explain (costs off) select * from coercepart where a = any ('{ab,null}');
                    QUERY PLAN                     
---------------------------------------------------
 Seq Scan on coercepart_ab coercepart
   Filter: ((a)::text = ANY ('{ab,NULL}'::text[]))
(2 rows)

explain (costs off) select * from coercepart where a = any (null::text[]);
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from coercepart where a = all ('{ab}');
                  QUERY PLAN                  
----------------------------------------------
 Seq Scan on coercepart_ab coercepart
   Filter: ((a)::text = ALL ('{ab}'::text[]))
(2 rows)

explain (costs off) select * from coercepart where a = all ('{ab,bc}');
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from coercepart where a = all ('{ab,null}');
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from coercepart where a = all (null::text[]);
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

drop table coercepart;
CREATE TABLE part (a INT, b INT) PARTITION BY LIST (a);
CREATE TABLE part_p1 PARTITION OF part FOR VALUES IN (-2,-1,0,1,2);
CREATE TABLE part_p2 PARTITION OF part DEFAULT PARTITION BY RANGE(a);
CREATE TABLE part_p2_p1 PARTITION OF part_p2 DEFAULT;
CREATE TABLE part_rev (b INT, c INT, a INT);
ALTER TABLE part ATTACH PARTITION part_rev FOR VALUES IN (3);  -- fail
ERROR:  table "part_rev" contains column "c" not found in parent "part"
DETAIL:  The new partition may contain only the columns present in parent.
ALTER TABLE part_rev DROP COLUMN c;
ALTER TABLE part ATTACH PARTITION part_rev FOR VALUES IN (3);  -- now it's ok
INSERT INTO part VALUES (-1,-1), (1,1), (2,NULL), (NULL,-2),(NULL,NULL);
EXPLAIN (COSTS OFF) SELECT tableoid::regclass as part, a, b FROM part WHERE a IS NULL ORDER BY 1, 2, 3;
                       QUERY PLAN                        
---------------------------------------------------------
 Sort
   Sort Key: ((part.tableoid)::regclass), part.a, part.b
   ->  Seq Scan on part_p2_p1 part
         Filter: (a IS NULL)
(4 rows)

EXPLAIN (VERBOSE, COSTS OFF) SELECT * FROM part p(x) ORDER BY x;
                  QUERY PLAN                   
-----------------------------------------------
 Sort
   Output: p.x, p.b
   Sort Key: p.x
   ->  Append
         ->  Seq Scan on public.part_p1 p_1
               Output: p_1.x, p_1.b
         ->  Seq Scan on public.part_rev p_2
               Output: p_2.x, p_2.b
         ->  Seq Scan on public.part_p2_p1 p_3
               Output: p_3.x, p_3.b
(10 rows)

--
-- some more cases
--
--
-- pruning for partitioned table appearing inside a sub-query
--
-- pruning won't work for mc3p, because some keys are Params
explain (costs off) select * from mc2p t1, lateral (select count(*) from mc3p t2 where t2.a = t1.b and abs(t2.b) = 1 and t2.c = 1) s where t1.a = 1;
                              QUERY PLAN                               
-----------------------------------------------------------------------
 Nested Loop
   ->  Append
         ->  Seq Scan on mc2p1 t1_1
               Filter: (a = 1)
         ->  Seq Scan on mc2p2 t1_2
               Filter: (a = 1)
         ->  Seq Scan on mc2p_default t1_3
               Filter: (a = 1)
   ->  Aggregate
         ->  Append
               ->  Seq Scan on mc3p0 t2_1
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p1 t2_2
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p2 t2_3
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p3 t2_4
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p4 t2_5
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p5 t2_6
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p6 t2_7
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p7 t2_8
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p_default t2_9
                     Filter: ((a = t1.b) AND (c = 1) AND (abs(b) = 1))
(28 rows)

-- pruning should work fine, because values for a prefix of keys (a, b) are
-- available
explain (costs off) select * from mc2p t1, lateral (select count(*) from mc3p t2 where t2.c = t1.b and abs(t2.b) = 1 and t2.a = 1) s where t1.a = 1;
                              QUERY PLAN                               
-----------------------------------------------------------------------
 Nested Loop
   ->  Append
         ->  Seq Scan on mc2p1 t1_1
               Filter: (a = 1)
         ->  Seq Scan on mc2p2 t1_2
               Filter: (a = 1)
         ->  Seq Scan on mc2p_default t1_3
               Filter: (a = 1)
   ->  Aggregate
         ->  Append
               ->  Seq Scan on mc3p0 t2_1
                     Filter: ((c = t1.b) AND (a = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p1 t2_2
                     Filter: ((c = t1.b) AND (a = 1) AND (abs(b) = 1))
               ->  Seq Scan on mc3p_default t2_3
                     Filter: ((c = t1.b) AND (a = 1) AND (abs(b) = 1))
(16 rows)

-- also here, because values for all keys are provided
explain (costs off) select * from mc2p t1, lateral (select count(*) from mc3p t2 where t2.a = 1 and abs(t2.b) = 1 and t2.c = 1) s where t1.a = 1;
                          QUERY PLAN                          
--------------------------------------------------------------
 Nested Loop
   ->  Aggregate
         ->  Seq Scan on mc3p1 t2
               Filter: ((a = 1) AND (c = 1) AND (abs(b) = 1))
   ->  Append
         ->  Seq Scan on mc2p1 t1_1
               Filter: (a = 1)
         ->  Seq Scan on mc2p2 t1_2
               Filter: (a = 1)
         ->  Seq Scan on mc2p_default t1_3
               Filter: (a = 1)
(11 rows)

--
-- pruning with clauses containing <> operator
--
-- doesn't prune range partitions
create table rp (a int) partition by range (a);
create table rp0 partition of rp for values from (minvalue) to (1);
create table rp1 partition of rp for values from (1) to (2);
create table rp2 partition of rp for values from (2) to (maxvalue);
explain (costs off) select * from rp where a <> 1;
         QUERY PLAN         
----------------------------
 Append
   ->  Seq Scan on rp0 rp_1
         Filter: (a <> 1)
   ->  Seq Scan on rp1 rp_2
         Filter: (a <> 1)
   ->  Seq Scan on rp2 rp_3
         Filter: (a <> 1)
(7 rows)

explain (costs off) select * from rp where a <> 1 and a <> 2;
               QUERY PLAN                
-----------------------------------------
 Append
   ->  Seq Scan on rp0 rp_1
         Filter: ((a <> 1) AND (a <> 2))
   ->  Seq Scan on rp1 rp_2
         Filter: ((a <> 1) AND (a <> 2))
   ->  Seq Scan on rp2 rp_3
         Filter: ((a <> 1) AND (a <> 2))
(7 rows)

-- null partition should be eliminated due to strict <> clause.
explain (costs off) select * from lp where a <> 'a';
             QUERY PLAN             
------------------------------------
 Append
   ->  Seq Scan on lp_ad lp_1
         Filter: (a <> 'a'::bpchar)
   ->  Seq Scan on lp_bc lp_2
         Filter: (a <> 'a'::bpchar)
   ->  Seq Scan on lp_ef lp_3
         Filter: (a <> 'a'::bpchar)
   ->  Seq Scan on lp_g lp_4
         Filter: (a <> 'a'::bpchar)
   ->  Seq Scan on lp_default lp_5
         Filter: (a <> 'a'::bpchar)
(11 rows)

-- ensure we detect contradictions in clauses; a can't be NULL and NOT NULL.
explain (costs off) select * from lp where a <> 'a' and a is null;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from lp where (a <> 'a' and a <> 'd') or a is null;
                                  QUERY PLAN                                  
------------------------------------------------------------------------------
 Append
   ->  Seq Scan on lp_bc lp_1
         Filter: (((a <> 'a'::bpchar) AND (a <> 'd'::bpchar)) OR (a IS NULL))
   ->  Seq Scan on lp_ef lp_2
         Filter: (((a <> 'a'::bpchar) AND (a <> 'd'::bpchar)) OR (a IS NULL))
   ->  Seq Scan on lp_g lp_3
         Filter: (((a <> 'a'::bpchar) AND (a <> 'd'::bpchar)) OR (a IS NULL))
   ->  Seq Scan on lp_null lp_4
         Filter: (((a <> 'a'::bpchar) AND (a <> 'd'::bpchar)) OR (a IS NULL))
   ->  Seq Scan on lp_default lp_5
         Filter: (((a <> 'a'::bpchar) AND (a <> 'd'::bpchar)) OR (a IS NULL))
(11 rows)

-- check that it also works for a partitioned table that's not root,
-- which in this case are partitions of rlp that are themselves
-- list-partitioned on b
explain (costs off) select * from rlp where a = 15 and b <> 'ab' and b <> 'cd' and b <> 'xy' and b is not null;
                                                                QUERY PLAN                                                                
------------------------------------------------------------------------------------------------------------------------------------------
 Append
   ->  Seq Scan on rlp3efgh rlp_1
         Filter: ((b IS NOT NULL) AND ((b)::text <> 'ab'::text) AND ((b)::text <> 'cd'::text) AND ((b)::text <> 'xy'::text) AND (a = 15))
   ->  Seq Scan on rlp3_default rlp_2
         Filter: ((b IS NOT NULL) AND ((b)::text <> 'ab'::text) AND ((b)::text <> 'cd'::text) AND ((b)::text <> 'xy'::text) AND (a = 15))
(5 rows)

--
-- different collations for different keys with same expression
--
create table coll_pruning_multi (a text) partition by range (substr(a, 1) collate "POSIX", substr(a, 1) collate "C");
create table coll_pruning_multi1 partition of coll_pruning_multi for values from ('a', 'a') to ('a', 'e');
create table coll_pruning_multi2 partition of coll_pruning_multi for values from ('a', 'e') to ('a', 'z');
create table coll_pruning_multi3 partition of coll_pruning_multi for values from ('b', 'a') to ('b', 'e');
-- no pruning, because no value for the leading key
explain (costs off) select * from coll_pruning_multi where substr(a, 1) = 'e' collate "C";
                         QUERY PLAN                         
------------------------------------------------------------
 Append
   ->  Seq Scan on coll_pruning_multi1 coll_pruning_multi_1
         Filter: (substr(a, 1) = 'e'::text COLLATE "C")
   ->  Seq Scan on coll_pruning_multi2 coll_pruning_multi_2
         Filter: (substr(a, 1) = 'e'::text COLLATE "C")
   ->  Seq Scan on coll_pruning_multi3 coll_pruning_multi_3
         Filter: (substr(a, 1) = 'e'::text COLLATE "C")
(7 rows)

-- pruning, with a value provided for the leading key
explain (costs off) select * from coll_pruning_multi where substr(a, 1) = 'a' collate "POSIX";
                         QUERY PLAN                         
------------------------------------------------------------
 Append
   ->  Seq Scan on coll_pruning_multi1 coll_pruning_multi_1
         Filter: (substr(a, 1) = 'a'::text COLLATE "POSIX")
   ->  Seq Scan on coll_pruning_multi2 coll_pruning_multi_2
         Filter: (substr(a, 1) = 'a'::text COLLATE "POSIX")
(5 rows)

-- pruning, with values provided for both keys
explain (costs off) select * from coll_pruning_multi where substr(a, 1) = 'e' collate "C" and substr(a, 1) = 'a' collate "POSIX";
                                            QUERY PLAN                                             
---------------------------------------------------------------------------------------------------
 Seq Scan on coll_pruning_multi2 coll_pruning_multi
   Filter: ((substr(a, 1) = 'e'::text COLLATE "C") AND (substr(a, 1) = 'a'::text COLLATE "POSIX"))
(2 rows)

--
-- LIKE operators don't prune
--
create table like_op_noprune (a text) partition by list (a);
create table like_op_noprune1 partition of like_op_noprune for values in ('ABC');
create table like_op_noprune2 partition of like_op_noprune for values in ('BCD');
explain (costs off) select * from like_op_noprune where a like '%BC';
                      QUERY PLAN                      
------------------------------------------------------
 Append
   ->  Seq Scan on like_op_noprune1 like_op_noprune_1
         Filter: (a ~~ '%BC'::text)
   ->  Seq Scan on like_op_noprune2 like_op_noprune_2
         Filter: (a ~~ '%BC'::text)
(5 rows)

--
-- tests wherein clause value requires a cross-type comparison function
--
create table lparted_by_int2 (a smallint) partition by list (a);
create table lparted_by_int2_1 partition of lparted_by_int2 for values in (1);
create table lparted_by_int2_16384 partition of lparted_by_int2 for values in (16384);
explain (costs off) select * from lparted_by_int2 where a = 100000000000000;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

create table rparted_by_int2 (a smallint) partition by range (a);
create table rparted_by_int2_1 partition of rparted_by_int2 for values from (1) to (10);
create table rparted_by_int2_16384 partition of rparted_by_int2 for values from (10) to (16384);
-- all partitions pruned
explain (costs off) select * from rparted_by_int2 where a > 100000000000000;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

create table rparted_by_int2_maxvalue partition of rparted_by_int2 for values from (16384) to (maxvalue);
-- all partitions but rparted_by_int2_maxvalue pruned
explain (costs off) select * from rparted_by_int2 where a > 100000000000000;
                      QUERY PLAN                      
------------------------------------------------------
 Seq Scan on rparted_by_int2_maxvalue rparted_by_int2
   Filter: (a > '100000000000000'::bigint)
(2 rows)

drop table lp, coll_pruning, rlp, mc3p, mc2p, boolpart, iboolpart, boolrangep, rp, coll_pruning_multi, like_op_noprune, lparted_by_int2, rparted_by_int2;
--
-- Test Partition pruning for HASH partitioning
--
-- Use hand-rolled hash functions and operator classes to get predictable
-- result on different machines.  See the definitions of
-- part_part_test_int4_ops and part_test_text_ops in insert.sql.
--
create table hp (a int, b text, c int)
  partition by hash (a part_test_int4_ops, b part_test_text_ops);
create table hp0 partition of hp for values with (modulus 4, remainder 0);
create table hp3 partition of hp for values with (modulus 4, remainder 3);
create table hp1 partition of hp for values with (modulus 4, remainder 1);
create table hp2 partition of hp for values with (modulus 4, remainder 2);
insert into hp values (null, null, 0);
insert into hp values (1, null, 1);
insert into hp values (1, 'xxx', 2);
insert into hp values (null, 'xxx', 3);
insert into hp values (2, 'xxx', 4);
insert into hp values (1, 'abcde', 5);
select tableoid::regclass, * from hp order by c;
 tableoid | a |   b   | c 
----------+---+-------+---
 hp0      |   |       | 0
 hp1      | 1 |       | 1
 hp0      | 1 | xxx   | 2
 hp2      |   | xxx   | 3
 hp3      | 2 | xxx   | 4
 hp2      | 1 | abcde | 5
(6 rows)

-- partial keys won't prune, nor would non-equality conditions
explain (costs off) select * from hp where a = 1;
         QUERY PLAN         
----------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: (a = 1)
   ->  Seq Scan on hp1 hp_2
         Filter: (a = 1)
   ->  Seq Scan on hp2 hp_3
         Filter: (a = 1)
   ->  Seq Scan on hp3 hp_4
         Filter: (a = 1)
(9 rows)

explain (costs off) select * from hp where b = 'xxx';
            QUERY PLAN             
-----------------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: (b = 'xxx'::text)
   ->  Seq Scan on hp1 hp_2
         Filter: (b = 'xxx'::text)
   ->  Seq Scan on hp2 hp_3
         Filter: (b = 'xxx'::text)
   ->  Seq Scan on hp3 hp_4
         Filter: (b = 'xxx'::text)
(9 rows)

explain (costs off) select * from hp where a is null;
         QUERY PLAN          
-----------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: (a IS NULL)
   ->  Seq Scan on hp1 hp_2
         Filter: (a IS NULL)
   ->  Seq Scan on hp2 hp_3
         Filter: (a IS NULL)
   ->  Seq Scan on hp3 hp_4
         Filter: (a IS NULL)
(9 rows)

explain (costs off) select * from hp where b is null;
         QUERY PLAN          
-----------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: (b IS NULL)
   ->  Seq Scan on hp1 hp_2
         Filter: (b IS NULL)
   ->  Seq Scan on hp2 hp_3
         Filter: (b IS NULL)
   ->  Seq Scan on hp3 hp_4
         Filter: (b IS NULL)
(9 rows)

explain (costs off) select * from hp where a < 1 and b = 'xxx';
                   QUERY PLAN                    
-------------------------------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: ((a < 1) AND (b = 'xxx'::text))
   ->  Seq Scan on hp1 hp_2
         Filter: ((a < 1) AND (b = 'xxx'::text))
   ->  Seq Scan on hp2 hp_3
         Filter: ((a < 1) AND (b = 'xxx'::text))
   ->  Seq Scan on hp3 hp_4
         Filter: ((a < 1) AND (b = 'xxx'::text))
(9 rows)

explain (costs off) select * from hp where a <> 1 and b = 'yyy';
                    QUERY PLAN                    
--------------------------------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: ((a <> 1) AND (b = 'yyy'::text))
   ->  Seq Scan on hp1 hp_2
         Filter: ((a <> 1) AND (b = 'yyy'::text))
   ->  Seq Scan on hp2 hp_3
         Filter: ((a <> 1) AND (b = 'yyy'::text))
   ->  Seq Scan on hp3 hp_4
         Filter: ((a <> 1) AND (b = 'yyy'::text))
(9 rows)

explain (costs off) select * from hp where a <> 1 and b <> 'xxx';
                    QUERY PLAN                     
---------------------------------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: ((a <> 1) AND (b <> 'xxx'::text))
   ->  Seq Scan on hp1 hp_2
         Filter: ((a <> 1) AND (b <> 'xxx'::text))
   ->  Seq Scan on hp2 hp_3
         Filter: ((a <> 1) AND (b <> 'xxx'::text))
   ->  Seq Scan on hp3 hp_4
         Filter: ((a <> 1) AND (b <> 'xxx'::text))
(9 rows)

-- pruning should work if either a value or a IS NULL clause is provided for
-- each of the keys
explain (costs off) select * from hp where a is null and b is null;
               QUERY PLAN                
-----------------------------------------
 Seq Scan on hp0 hp
   Filter: ((a IS NULL) AND (b IS NULL))
(2 rows)

explain (costs off) select * from hp where a = 1 and b is null;
             QUERY PLAN              
-------------------------------------
 Seq Scan on hp1 hp
   Filter: ((b IS NULL) AND (a = 1))
(2 rows)

explain (costs off) select * from hp where a = 1 and b = 'xxx';
                QUERY PLAN                 
-------------------------------------------
 Seq Scan on hp0 hp
   Filter: ((a = 1) AND (b = 'xxx'::text))
(2 rows)

explain (costs off) select * from hp where a is null and b = 'xxx';
                  QUERY PLAN                   
-----------------------------------------------
 Seq Scan on hp2 hp
   Filter: ((a IS NULL) AND (b = 'xxx'::text))
(2 rows)

explain (costs off) select * from hp where a = 2 and b = 'xxx';
                QUERY PLAN                 
-------------------------------------------
 Seq Scan on hp3 hp
   Filter: ((a = 2) AND (b = 'xxx'::text))
(2 rows)

explain (costs off) select * from hp where a = 1 and b = 'abcde';
                 QUERY PLAN                  
---------------------------------------------
 Seq Scan on hp2 hp
   Filter: ((a = 1) AND (b = 'abcde'::text))
(2 rows)

explain (costs off) select * from hp where (a = 1 and b = 'abcde') or (a = 2 and b = 'xxx') or (a is null and b is null);
                                                       QUERY PLAN                                                        
-------------------------------------------------------------------------------------------------------------------------
 Append
   ->  Seq Scan on hp0 hp_1
         Filter: (((a = 1) AND (b = 'abcde'::text)) OR ((a = 2) AND (b = 'xxx'::text)) OR ((a IS NULL) AND (b IS NULL)))
   ->  Seq Scan on hp2 hp_2
         Filter: (((a = 1) AND (b = 'abcde'::text)) OR ((a = 2) AND (b = 'xxx'::text)) OR ((a IS NULL) AND (b IS NULL)))
   ->  Seq Scan on hp3 hp_3
         Filter: (((a = 1) AND (b = 'abcde'::text)) OR ((a = 2) AND (b = 'xxx'::text)) OR ((a IS NULL) AND (b IS NULL)))
(7 rows)

-- test pruning when not all the partitions exist
drop table hp1;
drop table hp3;
explain (costs off) select * from hp where a = 1 and b = 'abcde';
                 QUERY PLAN                  
---------------------------------------------
 Seq Scan on hp2 hp
   Filter: ((a = 1) AND (b = 'abcde'::text))
(2 rows)

explain (costs off) select * from hp where a = 1 and b = 'abcde' and
  (c = 2 or c = 3);
                              QUERY PLAN                              
----------------------------------------------------------------------
 Seq Scan on hp2 hp
   Filter: ((a = 1) AND (b = 'abcde'::text) AND ((c = 2) OR (c = 3)))
(2 rows)

drop table hp2;
explain (costs off) select * from hp where a = 1 and b = 'abcde' and
  (c = 2 or c = 3);
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

--
-- Test runtime partition pruning
--
create table ab (a int not null, b int not null) partition by list (a);
create table ab_a2 partition of ab for values in(2) partition by list (b);
create table ab_a2_b1 partition of ab_a2 for values in (1);
create table ab_a2_b2 partition of ab_a2 for values in (2);
create table ab_a2_b3 partition of ab_a2 for values in (3);
create table ab_a1 partition of ab for values in(1) partition by list (b);
create table ab_a1_b1 partition of ab_a1 for values in (1);
create table ab_a1_b2 partition of ab_a1 for values in (2);
create table ab_a1_b3 partition of ab_a1 for values in (3);
create table ab_a3 partition of ab for values in(3) partition by list (b);
create table ab_a3_b1 partition of ab_a3 for values in (1);
create table ab_a3_b2 partition of ab_a3 for values in (2);
create table ab_a3_b3 partition of ab_a3 for values in (3);
-- Disallow index only scans as concurrent transactions may stop visibility
-- bits being set causing "Heap Fetches" to be unstable in the EXPLAIN ANALYZE
-- output.
set enable_indexonlyscan = off;
prepare ab_q1 (int, int, int) as
select * from ab where a between $1 and $2 and b <= $3;
explain (analyze, costs off, summary off, timing off) execute ab_q1 (2, 2, 3);
                       QUERY PLAN                        
---------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 6
   ->  Seq Scan on ab_a2_b1 ab_1 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a2_b2 ab_2 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a2_b3 ab_3 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
(8 rows)

explain (analyze, costs off, summary off, timing off) execute ab_q1 (1, 2, 3);
                       QUERY PLAN                        
---------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 3
   ->  Seq Scan on ab_a1_b1 ab_1 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a1_b2 ab_2 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a1_b3 ab_3 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a2_b1 ab_4 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a2_b2 ab_5 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
   ->  Seq Scan on ab_a2_b3 ab_6 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b <= $3))
(14 rows)

deallocate ab_q1;
-- Runtime pruning after optimizer pruning
prepare ab_q1 (int, int) as
select a from ab where a between $1 and $2 and b < 3;
explain (analyze, costs off, summary off, timing off) execute ab_q1 (2, 2);
                       QUERY PLAN                        
---------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 4
   ->  Seq Scan on ab_a2_b1 ab_1 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < 3))
   ->  Seq Scan on ab_a2_b2 ab_2 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < 3))
(6 rows)

explain (analyze, costs off, summary off, timing off) execute ab_q1 (2, 4);
                       QUERY PLAN                        
---------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 2
   ->  Seq Scan on ab_a2_b1 ab_1 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < 3))
   ->  Seq Scan on ab_a2_b2 ab_2 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < 3))
   ->  Seq Scan on ab_a3_b1 ab_3 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < 3))
   ->  Seq Scan on ab_a3_b2 ab_4 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < 3))
(10 rows)

-- Ensure a mix of PARAM_EXTERN and PARAM_EXEC Params work together at
-- different levels of partitioning.
prepare ab_q2 (int, int) as
select a from ab where a between $1 and $2 and b < (select 3);
explain (analyze, costs off, summary off, timing off) execute ab_q2 (2, 2);
                       QUERY PLAN                        
---------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 6
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Seq Scan on ab_a2_b1 ab_1 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < $0))
   ->  Seq Scan on ab_a2_b2 ab_2 (actual rows=0 loops=1)
         Filter: ((a >= $1) AND (a <= $2) AND (b < $0))
   ->  Seq Scan on ab_a2_b3 ab_3 (never executed)
         Filter: ((a >= $1) AND (a <= $2) AND (b < $0))
(10 rows)

-- As above, but swap the PARAM_EXEC Param to the first partition level
prepare ab_q3 (int, int) as
select a from ab where b between $1 and $2 and a < (select 3);
explain (analyze, costs off, summary off, timing off) execute ab_q3 (2, 2);
                       QUERY PLAN                        
---------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 6
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Seq Scan on ab_a1_b2 ab_1 (actual rows=0 loops=1)
         Filter: ((b >= $1) AND (b <= $2) AND (a < $0))
   ->  Seq Scan on ab_a2_b2 ab_2 (actual rows=0 loops=1)
         Filter: ((b >= $1) AND (b <= $2) AND (a < $0))
   ->  Seq Scan on ab_a3_b2 ab_3 (never executed)
         Filter: ((b >= $1) AND (b <= $2) AND (a < $0))
(10 rows)

--
-- Test runtime pruning with hash partitioned tables
--
-- recreate partitions dropped above
create table hp1 partition of hp for values with (modulus 4, remainder 1);
create table hp2 partition of hp for values with (modulus 4, remainder 2);
create table hp3 partition of hp for values with (modulus 4, remainder 3);
-- Ensure we correctly prune unneeded partitions when there is an IS NULL qual
prepare hp_q1 (text) as
select * from hp where a is null and b = $1;
explain (costs off) execute hp_q1('xxx');
                 QUERY PLAN                 
--------------------------------------------
 Append
   Subplans Removed: 3
   ->  Seq Scan on hp2 hp_1
         Filter: ((a IS NULL) AND (b = $1))
(4 rows)

deallocate hp_q1;
drop table hp;
-- Test a backwards Append scan
create table list_part (a int) partition by list (a);
create table list_part1 partition of list_part for values in (1);
create table list_part2 partition of list_part for values in (2);
create table list_part3 partition of list_part for values in (3);
create table list_part4 partition of list_part for values in (4);
insert into list_part select generate_series(1,4);
begin;
-- Don't select an actual value out of the table as the order of the Append's
-- subnodes may not be stable.
declare cur SCROLL CURSOR for select 1 from list_part where a > (select 1) and a < (select 4);
-- move beyond the final row
move 3 from cur;
-- Ensure we get two rows.
fetch backward all from cur;
 ?column? 
----------
        1
        1
(2 rows)

commit;
begin;
-- Test run-time pruning using stable functions
create function list_part_fn(int) returns int as $$ begin return $1; end;$$ language plpgsql stable;
-- Ensure pruning works using a stable function containing no Vars
explain (analyze, costs off, summary off, timing off) select * from list_part where a = list_part_fn(1);
                            QUERY PLAN                            
------------------------------------------------------------------
 Append (actual rows=1 loops=1)
   Subplans Removed: 3
   ->  Seq Scan on list_part1 list_part_1 (actual rows=1 loops=1)
         Filter: (a = list_part_fn(1))
(4 rows)

-- Ensure pruning does not take place when the function has a Var parameter
explain (analyze, costs off, summary off, timing off) select * from list_part where a = list_part_fn(a);
                            QUERY PLAN                            
------------------------------------------------------------------
 Append (actual rows=4 loops=1)
   ->  Seq Scan on list_part1 list_part_1 (actual rows=1 loops=1)
         Filter: (a = list_part_fn(a))
   ->  Seq Scan on list_part2 list_part_2 (actual rows=1 loops=1)
         Filter: (a = list_part_fn(a))
   ->  Seq Scan on list_part3 list_part_3 (actual rows=1 loops=1)
         Filter: (a = list_part_fn(a))
   ->  Seq Scan on list_part4 list_part_4 (actual rows=1 loops=1)
         Filter: (a = list_part_fn(a))
(9 rows)

-- Ensure pruning does not take place when the expression contains a Var.
explain (analyze, costs off, summary off, timing off) select * from list_part where a = list_part_fn(1) + a;
                            QUERY PLAN                            
------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   ->  Seq Scan on list_part1 list_part_1 (actual rows=0 loops=1)
         Filter: (a = (list_part_fn(1) + a))
         Rows Removed by Filter: 1
   ->  Seq Scan on list_part2 list_part_2 (actual rows=0 loops=1)
         Filter: (a = (list_part_fn(1) + a))
         Rows Removed by Filter: 1
   ->  Seq Scan on list_part3 list_part_3 (actual rows=0 loops=1)
         Filter: (a = (list_part_fn(1) + a))
         Rows Removed by Filter: 1
   ->  Seq Scan on list_part4 list_part_4 (actual rows=0 loops=1)
         Filter: (a = (list_part_fn(1) + a))
         Rows Removed by Filter: 1
(13 rows)

rollback;
drop table list_part;
-- Parallel append
-- Parallel queries won't necessarily get as many workers as the planner
-- asked for.  This affects not only the "Workers Launched:" field of EXPLAIN
-- results, but also row counts and loop counts for parallel scans, Gathers,
-- and everything in between.  This function filters out the values we can't
-- rely on to be stable.
-- This removes enough info that you might wonder why bother with EXPLAIN
-- ANALYZE at all.  The answer is that we need to see '(never executed)'
-- notations because that's the only way to verify runtime pruning.
create function explain_parallel_append(text) returns setof text
language plpgsql as
$$
declare
    ln text;
begin
    for ln in
        execute format('explain (analyze, costs off, summary off, timing off) %s',
            $1)
    loop
        ln := regexp_replace(ln, 'Workers Launched: \d+', 'Workers Launched: N');
        ln := regexp_replace(ln, 'actual rows=\d+ loops=\d+', 'actual rows=N loops=N');
        ln := regexp_replace(ln, 'Rows Removed by Filter: \d+', 'Rows Removed by Filter: N');
        return next ln;
    end loop;
end;
$$;
prepare ab_q4 (int, int) as
select avg(a) from ab where a between $1 and $2 and b < 4;
-- Encourage use of parallel plans
set parallel_setup_cost = 0;
set parallel_tuple_cost = 0;
set min_parallel_table_scan_size = 0;
set max_parallel_workers_per_gather = 2;
select explain_parallel_append('execute ab_q4 (2, 2)');
                              explain_parallel_append                               
------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Parallel Append (actual rows=N loops=N)
                     Subplans Removed: 6
                     ->  Parallel Seq Scan on ab_a2_b1 ab_1 (actual rows=N loops=N)
                           Filter: ((a >= $1) AND (a <= $2) AND (b < 4))
                     ->  Parallel Seq Scan on ab_a2_b2 ab_2 (actual rows=N loops=N)
                           Filter: ((a >= $1) AND (a <= $2) AND (b < 4))
                     ->  Parallel Seq Scan on ab_a2_b3 ab_3 (actual rows=N loops=N)
                           Filter: ((a >= $1) AND (a <= $2) AND (b < 4))
(13 rows)

-- Test run-time pruning with IN lists.
prepare ab_q5 (int, int, int) as
select avg(a) from ab where a in($1,$2,$3) and b < 4;
select explain_parallel_append('execute ab_q5 (1, 1, 1)');
                              explain_parallel_append                               
------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Parallel Append (actual rows=N loops=N)
                     Subplans Removed: 6
                     ->  Parallel Seq Scan on ab_a1_b1 ab_1 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a1_b2 ab_2 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a1_b3 ab_3 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
(13 rows)

select explain_parallel_append('execute ab_q5 (2, 3, 3)');
                              explain_parallel_append                               
------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Parallel Append (actual rows=N loops=N)
                     Subplans Removed: 3
                     ->  Parallel Seq Scan on ab_a2_b1 ab_1 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a2_b2 ab_2 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a2_b3 ab_3 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a3_b1 ab_4 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a3_b2 ab_5 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
                     ->  Parallel Seq Scan on ab_a3_b3 ab_6 (actual rows=N loops=N)
                           Filter: ((b < 4) AND (a = ANY (ARRAY[$1, $2, $3])))
(19 rows)

-- Try some params whose values do not belong to any partition.
select explain_parallel_append('execute ab_q5 (33, 44, 55)');
                  explain_parallel_append                  
-----------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Parallel Append (actual rows=N loops=N)
                     Subplans Removed: 9
(7 rows)

-- Test Parallel Append with PARAM_EXEC Params
select explain_parallel_append('select count(*) from ab where (a = (select 1) or a = (select 3)) and b = 2');
                           explain_parallel_append                            
------------------------------------------------------------------------------
 Aggregate (actual rows=N loops=N)
   InitPlan 1 (returns $0)
     ->  Result (actual rows=N loops=N)
   InitPlan 2 (returns $1)
     ->  Result (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Params Evaluated: $0, $1
         Workers Launched: N
         ->  Parallel Append (actual rows=N loops=N)
               ->  Parallel Seq Scan on ab_a1_b2 ab_1 (actual rows=N loops=N)
                     Filter: ((b = 2) AND ((a = $0) OR (a = $1)))
               ->  Parallel Seq Scan on ab_a2_b2 ab_2 (never executed)
                     Filter: ((b = 2) AND ((a = $0) OR (a = $1)))
               ->  Parallel Seq Scan on ab_a3_b2 ab_3 (actual rows=N loops=N)
                     Filter: ((b = 2) AND ((a = $0) OR (a = $1)))
(16 rows)

-- Test pruning during parallel nested loop query
create table lprt_a (a int not null);
-- Insert some values we won't find in ab
insert into lprt_a select 0 from generate_series(1,100);
-- and insert some values that we should find.
insert into lprt_a values(1),(1);
analyze lprt_a;
create index ab_a2_b1_a_idx on ab_a2_b1 (a);
create index ab_a2_b2_a_idx on ab_a2_b2 (a);
create index ab_a2_b3_a_idx on ab_a2_b3 (a);
create index ab_a1_b1_a_idx on ab_a1_b1 (a);
create index ab_a1_b2_a_idx on ab_a1_b2 (a);
create index ab_a1_b3_a_idx on ab_a1_b3 (a);
create index ab_a3_b1_a_idx on ab_a3_b1 (a);
create index ab_a3_b2_a_idx on ab_a3_b2 (a);
create index ab_a3_b3_a_idx on ab_a3_b3 (a);
set enable_hashjoin = 0;
set enable_mergejoin = 0;
set enable_memoize = 0;
select explain_parallel_append('select avg(ab.a) from ab inner join lprt_a a on ab.a = a.a where a.a in(0, 0, 1)');
                                        explain_parallel_append                                         
--------------------------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 1
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Nested Loop (actual rows=N loops=N)
                     ->  Parallel Seq Scan on lprt_a a (actual rows=N loops=N)
                           Filter: (a = ANY ('{0,0,1}'::integer[]))
                     ->  Append (actual rows=N loops=N)
                           ->  Index Scan using ab_a1_b1_a_idx on ab_a1_b1 ab_1 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b2_a_idx on ab_a1_b2 ab_2 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b3_a_idx on ab_a1_b3 ab_3 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b1_a_idx on ab_a2_b1 ab_4 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b2_a_idx on ab_a2_b2 ab_5 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b3_a_idx on ab_a2_b3 ab_6 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b1_a_idx on ab_a3_b1 ab_7 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b2_a_idx on ab_a3_b2 ab_8 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b3_a_idx on ab_a3_b3 ab_9 (never executed)
                                 Index Cond: (a = a.a)
(27 rows)

-- Ensure the same partitions are pruned when we make the nested loop
-- parameter an Expr rather than a plain Param.
select explain_parallel_append('select avg(ab.a) from ab inner join lprt_a a on ab.a = a.a + 0 where a.a in(0, 0, 1)');
                                        explain_parallel_append                                         
--------------------------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 1
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Nested Loop (actual rows=N loops=N)
                     ->  Parallel Seq Scan on lprt_a a (actual rows=N loops=N)
                           Filter: (a = ANY ('{0,0,1}'::integer[]))
                     ->  Append (actual rows=N loops=N)
                           ->  Index Scan using ab_a1_b1_a_idx on ab_a1_b1 ab_1 (actual rows=N loops=N)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a1_b2_a_idx on ab_a1_b2 ab_2 (actual rows=N loops=N)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a1_b3_a_idx on ab_a1_b3 ab_3 (actual rows=N loops=N)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a2_b1_a_idx on ab_a2_b1 ab_4 (never executed)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a2_b2_a_idx on ab_a2_b2 ab_5 (never executed)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a2_b3_a_idx on ab_a2_b3 ab_6 (never executed)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a3_b1_a_idx on ab_a3_b1 ab_7 (never executed)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a3_b2_a_idx on ab_a3_b2 ab_8 (never executed)
                                 Index Cond: (a = (a.a + 0))
                           ->  Index Scan using ab_a3_b3_a_idx on ab_a3_b3 ab_9 (never executed)
                                 Index Cond: (a = (a.a + 0))
(27 rows)

insert into lprt_a values(3),(3);
select explain_parallel_append('select avg(ab.a) from ab inner join lprt_a a on ab.a = a.a where a.a in(1, 0, 3)');
                                        explain_parallel_append                                         
--------------------------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 1
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Nested Loop (actual rows=N loops=N)
                     ->  Parallel Seq Scan on lprt_a a (actual rows=N loops=N)
                           Filter: (a = ANY ('{1,0,3}'::integer[]))
                     ->  Append (actual rows=N loops=N)
                           ->  Index Scan using ab_a1_b1_a_idx on ab_a1_b1 ab_1 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b2_a_idx on ab_a1_b2 ab_2 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b3_a_idx on ab_a1_b3 ab_3 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b1_a_idx on ab_a2_b1 ab_4 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b2_a_idx on ab_a2_b2 ab_5 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b3_a_idx on ab_a2_b3 ab_6 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b1_a_idx on ab_a3_b1 ab_7 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b2_a_idx on ab_a3_b2 ab_8 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b3_a_idx on ab_a3_b3 ab_9 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
(27 rows)

select explain_parallel_append('select avg(ab.a) from ab inner join lprt_a a on ab.a = a.a where a.a in(1, 0, 0)');
                                        explain_parallel_append                                         
--------------------------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 1
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Nested Loop (actual rows=N loops=N)
                     ->  Parallel Seq Scan on lprt_a a (actual rows=N loops=N)
                           Filter: (a = ANY ('{1,0,0}'::integer[]))
                           Rows Removed by Filter: N
                     ->  Append (actual rows=N loops=N)
                           ->  Index Scan using ab_a1_b1_a_idx on ab_a1_b1 ab_1 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b2_a_idx on ab_a1_b2 ab_2 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b3_a_idx on ab_a1_b3 ab_3 (actual rows=N loops=N)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b1_a_idx on ab_a2_b1 ab_4 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b2_a_idx on ab_a2_b2 ab_5 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b3_a_idx on ab_a2_b3 ab_6 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b1_a_idx on ab_a3_b1 ab_7 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b2_a_idx on ab_a3_b2 ab_8 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b3_a_idx on ab_a3_b3 ab_9 (never executed)
                                 Index Cond: (a = a.a)
(28 rows)

delete from lprt_a where a = 1;
select explain_parallel_append('select avg(ab.a) from ab inner join lprt_a a on ab.a = a.a where a.a in(1, 0, 0)');
                                     explain_parallel_append                                     
-------------------------------------------------------------------------------------------------
 Finalize Aggregate (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 1
         Workers Launched: N
         ->  Partial Aggregate (actual rows=N loops=N)
               ->  Nested Loop (actual rows=N loops=N)
                     ->  Parallel Seq Scan on lprt_a a (actual rows=N loops=N)
                           Filter: (a = ANY ('{1,0,0}'::integer[]))
                           Rows Removed by Filter: N
                     ->  Append (actual rows=N loops=N)
                           ->  Index Scan using ab_a1_b1_a_idx on ab_a1_b1 ab_1 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b2_a_idx on ab_a1_b2 ab_2 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a1_b3_a_idx on ab_a1_b3 ab_3 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b1_a_idx on ab_a2_b1 ab_4 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b2_a_idx on ab_a2_b2 ab_5 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a2_b3_a_idx on ab_a2_b3 ab_6 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b1_a_idx on ab_a3_b1 ab_7 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b2_a_idx on ab_a3_b2 ab_8 (never executed)
                                 Index Cond: (a = a.a)
                           ->  Index Scan using ab_a3_b3_a_idx on ab_a3_b3 ab_9 (never executed)
                                 Index Cond: (a = a.a)
(28 rows)

reset enable_hashjoin;
reset enable_mergejoin;
reset enable_memoize;
reset parallel_setup_cost;
reset parallel_tuple_cost;
reset min_parallel_table_scan_size;
reset max_parallel_workers_per_gather;
-- Test run-time partition pruning with an initplan
explain (analyze, costs off, summary off, timing off)
select * from ab where a = (select max(a) from lprt_a) and b = (select max(a)-1 from lprt_a);
                               QUERY PLAN                                
-------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Aggregate (actual rows=1 loops=1)
           ->  Seq Scan on lprt_a (actual rows=102 loops=1)
   InitPlan 2 (returns $1)
     ->  Aggregate (actual rows=1 loops=1)
           ->  Seq Scan on lprt_a lprt_a_1 (actual rows=102 loops=1)
   ->  Bitmap Heap Scan on ab_a1_b1 ab_1 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a1_b1_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a1_b2 ab_2 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a1_b2_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a1_b3 ab_3 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a1_b3_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a2_b1 ab_4 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a2_b1_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a2_b2 ab_5 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a2_b2_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a2_b3 ab_6 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a2_b3_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a3_b1 ab_7 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a3_b1_a_idx (never executed)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a3_b2 ab_8 (actual rows=0 loops=1)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a3_b2_a_idx (actual rows=0 loops=1)
               Index Cond: (a = $0)
   ->  Bitmap Heap Scan on ab_a3_b3 ab_9 (never executed)
         Recheck Cond: (a = $0)
         Filter: (b = $1)
         ->  Bitmap Index Scan on ab_a3_b3_a_idx (never executed)
               Index Cond: (a = $0)
(52 rows)

-- Test run-time partition pruning with UNION ALL parents
explain (analyze, costs off, summary off, timing off)
select * from (select * from ab where a = 1 union all select * from ab) ab where b = (select 1);
                                  QUERY PLAN                                   
-------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Append (actual rows=0 loops=1)
         ->  Bitmap Heap Scan on ab_a1_b1 ab_11 (actual rows=0 loops=1)
               Recheck Cond: (a = 1)
               Filter: (b = $0)
               ->  Bitmap Index Scan on ab_a1_b1_a_idx (actual rows=0 loops=1)
                     Index Cond: (a = 1)
         ->  Bitmap Heap Scan on ab_a1_b2 ab_12 (never executed)
               Recheck Cond: (a = 1)
               Filter: (b = $0)
               ->  Bitmap Index Scan on ab_a1_b2_a_idx (never executed)
                     Index Cond: (a = 1)
         ->  Bitmap Heap Scan on ab_a1_b3 ab_13 (never executed)
               Recheck Cond: (a = 1)
               Filter: (b = $0)
               ->  Bitmap Index Scan on ab_a1_b3_a_idx (never executed)
                     Index Cond: (a = 1)
   ->  Seq Scan on ab_a1_b1 ab_1 (actual rows=0 loops=1)
         Filter: (b = $0)
   ->  Seq Scan on ab_a1_b2 ab_2 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a1_b3 ab_3 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a2_b1 ab_4 (actual rows=0 loops=1)
         Filter: (b = $0)
   ->  Seq Scan on ab_a2_b2 ab_5 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a2_b3 ab_6 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a3_b1 ab_7 (actual rows=0 loops=1)
         Filter: (b = $0)
   ->  Seq Scan on ab_a3_b2 ab_8 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a3_b3 ab_9 (never executed)
         Filter: (b = $0)
(37 rows)

-- A case containing a UNION ALL with a non-partitioned child.
explain (analyze, costs off, summary off, timing off)
select * from (select * from ab where a = 1 union all (values(10,5)) union all select * from ab) ab where b = (select 1);
                                  QUERY PLAN                                   
-------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Append (actual rows=0 loops=1)
         ->  Bitmap Heap Scan on ab_a1_b1 ab_11 (actual rows=0 loops=1)
               Recheck Cond: (a = 1)
               Filter: (b = $0)
               ->  Bitmap Index Scan on ab_a1_b1_a_idx (actual rows=0 loops=1)
                     Index Cond: (a = 1)
         ->  Bitmap Heap Scan on ab_a1_b2 ab_12 (never executed)
               Recheck Cond: (a = 1)
               Filter: (b = $0)
               ->  Bitmap Index Scan on ab_a1_b2_a_idx (never executed)
                     Index Cond: (a = 1)
         ->  Bitmap Heap Scan on ab_a1_b3 ab_13 (never executed)
               Recheck Cond: (a = 1)
               Filter: (b = $0)
               ->  Bitmap Index Scan on ab_a1_b3_a_idx (never executed)
                     Index Cond: (a = 1)
   ->  Result (actual rows=0 loops=1)
         One-Time Filter: (5 = $0)
   ->  Seq Scan on ab_a1_b1 ab_1 (actual rows=0 loops=1)
         Filter: (b = $0)
   ->  Seq Scan on ab_a1_b2 ab_2 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a1_b3 ab_3 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a2_b1 ab_4 (actual rows=0 loops=1)
         Filter: (b = $0)
   ->  Seq Scan on ab_a2_b2 ab_5 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a2_b3 ab_6 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a3_b1 ab_7 (actual rows=0 loops=1)
         Filter: (b = $0)
   ->  Seq Scan on ab_a3_b2 ab_8 (never executed)
         Filter: (b = $0)
   ->  Seq Scan on ab_a3_b3 ab_9 (never executed)
         Filter: (b = $0)
(39 rows)

-- Another UNION ALL test, but containing a mix of exec init and exec run-time pruning.
create table xy_1 (x int, y int);
insert into xy_1 values(100,-10);
set enable_bitmapscan = 0;
set enable_indexscan = 0;
prepare ab_q6 as
select * from (
	select tableoid::regclass,a,b from ab
union all
	select tableoid::regclass,x,y from xy_1
union all
	select tableoid::regclass,a,b from ab
) ab where a = $1 and b = (select -10);
-- Ensure the xy_1 subplan is not pruned.
explain (analyze, costs off, summary off, timing off) execute ab_q6(1);
                    QUERY PLAN                    
--------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 12
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Seq Scan on ab_a1_b1 ab_1 (never executed)
         Filter: ((a = $1) AND (b = $0))
   ->  Seq Scan on ab_a1_b2 ab_2 (never executed)
         Filter: ((a = $1) AND (b = $0))
   ->  Seq Scan on ab_a1_b3 ab_3 (never executed)
         Filter: ((a = $1) AND (b = $0))
   ->  Seq Scan on xy_1 (actual rows=0 loops=1)
         Filter: ((x = $1) AND (y = $0))
         Rows Removed by Filter: 1
   ->  Seq Scan on ab_a1_b1 ab_4 (never executed)
         Filter: ((a = $1) AND (b = $0))
   ->  Seq Scan on ab_a1_b2 ab_5 (never executed)
         Filter: ((a = $1) AND (b = $0))
   ->  Seq Scan on ab_a1_b3 ab_6 (never executed)
         Filter: ((a = $1) AND (b = $0))
(19 rows)

-- Ensure we see just the xy_1 row.
execute ab_q6(100);
 tableoid |  a  |  b  
----------+-----+-----
 xy_1     | 100 | -10
(1 row)

reset enable_bitmapscan;
reset enable_indexscan;
deallocate ab_q1;
deallocate ab_q2;
deallocate ab_q3;
deallocate ab_q4;
deallocate ab_q5;
deallocate ab_q6;
-- UPDATE on a partition subtree has been seen to have problems.
insert into ab values (1,2);
explain (analyze, costs off, summary off, timing off)
update ab_a1 set b = 3 from ab where ab.a = 1 and ab.a = ab_a1.a;
                                        QUERY PLAN                                         
-------------------------------------------------------------------------------------------
 Update on ab_a1 (actual rows=0 loops=1)
   Update on ab_a1_b1 ab_a1_1
   Update on ab_a1_b2 ab_a1_2
   Update on ab_a1_b3 ab_a1_3
   ->  Nested Loop (actual rows=1 loops=1)
         ->  Append (actual rows=1 loops=1)
               ->  Bitmap Heap Scan on ab_a1_b1 ab_a1_1 (actual rows=0 loops=1)
                     Recheck Cond: (a = 1)
                     ->  Bitmap Index Scan on ab_a1_b1_a_idx (actual rows=0 loops=1)
                           Index Cond: (a = 1)
               ->  Bitmap Heap Scan on ab_a1_b2 ab_a1_2 (actual rows=1 loops=1)
                     Recheck Cond: (a = 1)
                     Heap Blocks: exact=1
                     ->  Bitmap Index Scan on ab_a1_b2_a_idx (actual rows=1 loops=1)
                           Index Cond: (a = 1)
               ->  Bitmap Heap Scan on ab_a1_b3 ab_a1_3 (actual rows=0 loops=1)
                     Recheck Cond: (a = 1)
                     ->  Bitmap Index Scan on ab_a1_b3_a_idx (actual rows=1 loops=1)
                           Index Cond: (a = 1)
         ->  Materialize (actual rows=1 loops=1)
               ->  Append (actual rows=1 loops=1)
                     ->  Bitmap Heap Scan on ab_a1_b1 ab_1 (actual rows=0 loops=1)
                           Recheck Cond: (a = 1)
                           ->  Bitmap Index Scan on ab_a1_b1_a_idx (actual rows=0 loops=1)
                                 Index Cond: (a = 1)
                     ->  Bitmap Heap Scan on ab_a1_b2 ab_2 (actual rows=1 loops=1)
                           Recheck Cond: (a = 1)
                           Heap Blocks: exact=1
                           ->  Bitmap Index Scan on ab_a1_b2_a_idx (actual rows=1 loops=1)
                                 Index Cond: (a = 1)
                     ->  Bitmap Heap Scan on ab_a1_b3 ab_3 (actual rows=0 loops=1)
                           Recheck Cond: (a = 1)
                           ->  Bitmap Index Scan on ab_a1_b3_a_idx (actual rows=1 loops=1)
                                 Index Cond: (a = 1)
(34 rows)

table ab;
 a | b 
---+---
 1 | 3
(1 row)

-- Test UPDATE where source relation has run-time pruning enabled
truncate ab;
insert into ab values (1, 1), (1, 2), (1, 3), (2, 1);
explain (analyze, costs off, summary off, timing off)
update ab_a1 set b = 3 from ab_a2 where ab_a2.b = (select 1);
                                  QUERY PLAN                                  
------------------------------------------------------------------------------
 Update on ab_a1 (actual rows=0 loops=1)
   Update on ab_a1_b1 ab_a1_1
   Update on ab_a1_b2 ab_a1_2
   Update on ab_a1_b3 ab_a1_3
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Nested Loop (actual rows=3 loops=1)
         ->  Append (actual rows=3 loops=1)
               ->  Seq Scan on ab_a1_b1 ab_a1_1 (actual rows=1 loops=1)
               ->  Seq Scan on ab_a1_b2 ab_a1_2 (actual rows=1 loops=1)
               ->  Seq Scan on ab_a1_b3 ab_a1_3 (actual rows=1 loops=1)
         ->  Materialize (actual rows=1 loops=3)
               ->  Append (actual rows=1 loops=1)
                     ->  Seq Scan on ab_a2_b1 ab_a2_1 (actual rows=1 loops=1)
                           Filter: (b = $0)
                     ->  Seq Scan on ab_a2_b2 ab_a2_2 (never executed)
                           Filter: (b = $0)
                     ->  Seq Scan on ab_a2_b3 ab_a2_3 (never executed)
                           Filter: (b = $0)
(19 rows)

select tableoid::regclass, * from ab;
 tableoid | a | b 
----------+---+---
 ab_a1_b3 | 1 | 3
 ab_a1_b3 | 1 | 3
 ab_a1_b3 | 1 | 3
 ab_a2_b1 | 2 | 1
(4 rows)

drop table ab, lprt_a;
-- Join
create table tbl1(col1 int);
insert into tbl1 values (501), (505);
-- Basic table
create table tprt (col1 int) partition by range (col1);
create table tprt_1 partition of tprt for values from (1) to (501);
create table tprt_2 partition of tprt for values from (501) to (1001);
create table tprt_3 partition of tprt for values from (1001) to (2001);
create table tprt_4 partition of tprt for values from (2001) to (3001);
create table tprt_5 partition of tprt for values from (3001) to (4001);
create table tprt_6 partition of tprt for values from (4001) to (5001);
create index tprt1_idx on tprt_1 (col1);
create index tprt2_idx on tprt_2 (col1);
create index tprt3_idx on tprt_3 (col1);
create index tprt4_idx on tprt_4 (col1);
create index tprt5_idx on tprt_5 (col1);
create index tprt6_idx on tprt_6 (col1);
insert into tprt values (10), (20), (501), (502), (505), (1001), (4500);
set enable_hashjoin = off;
set enable_mergejoin = off;
explain (analyze, costs off, summary off, timing off)
select * from tbl1 join tprt on tbl1.col1 > tprt.col1;
                                QUERY PLAN                                
--------------------------------------------------------------------------
 Nested Loop (actual rows=6 loops=1)
   ->  Seq Scan on tbl1 (actual rows=2 loops=1)
   ->  Append (actual rows=3 loops=2)
         ->  Index Scan using tprt1_idx on tprt_1 (actual rows=2 loops=2)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt2_idx on tprt_2 (actual rows=2 loops=1)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt3_idx on tprt_3 (never executed)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt4_idx on tprt_4 (never executed)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt5_idx on tprt_5 (never executed)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt6_idx on tprt_6 (never executed)
               Index Cond: (col1 < tbl1.col1)
(15 rows)

explain (analyze, costs off, summary off, timing off)
select * from tbl1 join tprt on tbl1.col1 = tprt.col1;
                                QUERY PLAN                                
--------------------------------------------------------------------------
 Nested Loop (actual rows=2 loops=1)
   ->  Seq Scan on tbl1 (actual rows=2 loops=1)
   ->  Append (actual rows=1 loops=2)
         ->  Index Scan using tprt1_idx on tprt_1 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt2_idx on tprt_2 (actual rows=1 loops=2)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt3_idx on tprt_3 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt4_idx on tprt_4 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt5_idx on tprt_5 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt6_idx on tprt_6 (never executed)
               Index Cond: (col1 = tbl1.col1)
(15 rows)

select tbl1.col1, tprt.col1 from tbl1
inner join tprt on tbl1.col1 > tprt.col1
order by tbl1.col1, tprt.col1;
 col1 | col1 
------+------
  501 |   10
  501 |   20
  505 |   10
  505 |   20
  505 |  501
  505 |  502
(6 rows)

select tbl1.col1, tprt.col1 from tbl1
inner join tprt on tbl1.col1 = tprt.col1
order by tbl1.col1, tprt.col1;
 col1 | col1 
------+------
  501 |  501
  505 |  505
(2 rows)

-- Multiple partitions
insert into tbl1 values (1001), (1010), (1011);
explain (analyze, costs off, summary off, timing off)
select * from tbl1 inner join tprt on tbl1.col1 > tprt.col1;
                                QUERY PLAN                                
--------------------------------------------------------------------------
 Nested Loop (actual rows=23 loops=1)
   ->  Seq Scan on tbl1 (actual rows=5 loops=1)
   ->  Append (actual rows=5 loops=5)
         ->  Index Scan using tprt1_idx on tprt_1 (actual rows=2 loops=5)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt2_idx on tprt_2 (actual rows=3 loops=4)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt3_idx on tprt_3 (actual rows=1 loops=2)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt4_idx on tprt_4 (never executed)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt5_idx on tprt_5 (never executed)
               Index Cond: (col1 < tbl1.col1)
         ->  Index Scan using tprt6_idx on tprt_6 (never executed)
               Index Cond: (col1 < tbl1.col1)
(15 rows)

explain (analyze, costs off, summary off, timing off)
select * from tbl1 inner join tprt on tbl1.col1 = tprt.col1;
                                QUERY PLAN                                
--------------------------------------------------------------------------
 Nested Loop (actual rows=3 loops=1)
   ->  Seq Scan on tbl1 (actual rows=5 loops=1)
   ->  Append (actual rows=1 loops=5)
         ->  Index Scan using tprt1_idx on tprt_1 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt2_idx on tprt_2 (actual rows=1 loops=2)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt3_idx on tprt_3 (actual rows=0 loops=3)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt4_idx on tprt_4 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt5_idx on tprt_5 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt6_idx on tprt_6 (never executed)
               Index Cond: (col1 = tbl1.col1)
(15 rows)

select tbl1.col1, tprt.col1 from tbl1
inner join tprt on tbl1.col1 > tprt.col1
order by tbl1.col1, tprt.col1;
 col1 | col1 
------+------
  501 |   10
  501 |   20
  505 |   10
  505 |   20
  505 |  501
  505 |  502
 1001 |   10
 1001 |   20
 1001 |  501
 1001 |  502
 1001 |  505
 1010 |   10
 1010 |   20
 1010 |  501
 1010 |  502
 1010 |  505
 1010 | 1001
 1011 |   10
 1011 |   20
 1011 |  501
 1011 |  502
 1011 |  505
 1011 | 1001
(23 rows)

select tbl1.col1, tprt.col1 from tbl1
inner join tprt on tbl1.col1 = tprt.col1
order by tbl1.col1, tprt.col1;
 col1 | col1 
------+------
  501 |  501
  505 |  505
 1001 | 1001
(3 rows)

-- Last partition
delete from tbl1;
insert into tbl1 values (4400);
explain (analyze, costs off, summary off, timing off)
select * from tbl1 join tprt on tbl1.col1 < tprt.col1;
                                QUERY PLAN                                
--------------------------------------------------------------------------
 Nested Loop (actual rows=1 loops=1)
   ->  Seq Scan on tbl1 (actual rows=1 loops=1)
   ->  Append (actual rows=1 loops=1)
         ->  Index Scan using tprt1_idx on tprt_1 (never executed)
               Index Cond: (col1 > tbl1.col1)
         ->  Index Scan using tprt2_idx on tprt_2 (never executed)
               Index Cond: (col1 > tbl1.col1)
         ->  Index Scan using tprt3_idx on tprt_3 (never executed)
               Index Cond: (col1 > tbl1.col1)
         ->  Index Scan using tprt4_idx on tprt_4 (never executed)
               Index Cond: (col1 > tbl1.col1)
         ->  Index Scan using tprt5_idx on tprt_5 (never executed)
               Index Cond: (col1 > tbl1.col1)
         ->  Index Scan using tprt6_idx on tprt_6 (actual rows=1 loops=1)
               Index Cond: (col1 > tbl1.col1)
(15 rows)

select tbl1.col1, tprt.col1 from tbl1
inner join tprt on tbl1.col1 < tprt.col1
order by tbl1.col1, tprt.col1;
 col1 | col1 
------+------
 4400 | 4500
(1 row)

-- No matching partition
delete from tbl1;
insert into tbl1 values (10000);
explain (analyze, costs off, summary off, timing off)
select * from tbl1 join tprt on tbl1.col1 = tprt.col1;
                            QUERY PLAN                             
-------------------------------------------------------------------
 Nested Loop (actual rows=0 loops=1)
   ->  Seq Scan on tbl1 (actual rows=1 loops=1)
   ->  Append (actual rows=0 loops=1)
         ->  Index Scan using tprt1_idx on tprt_1 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt2_idx on tprt_2 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt3_idx on tprt_3 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt4_idx on tprt_4 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt5_idx on tprt_5 (never executed)
               Index Cond: (col1 = tbl1.col1)
         ->  Index Scan using tprt6_idx on tprt_6 (never executed)
               Index Cond: (col1 = tbl1.col1)
(15 rows)

select tbl1.col1, tprt.col1 from tbl1
inner join tprt on tbl1.col1 = tprt.col1
order by tbl1.col1, tprt.col1;
 col1 | col1 
------+------
(0 rows)

drop table tbl1, tprt;
-- Test with columns defined in varying orders between each level
create table part_abc (a int not null, b int not null, c int not null) partition by list (a);
create table part_bac (b int not null, a int not null, c int not null) partition by list (b);
create table part_cab (c int not null, a int not null, b int not null) partition by list (c);
create table part_abc_p1 (a int not null, b int not null, c int not null);
alter table part_abc attach partition part_bac for values in(1);
alter table part_bac attach partition part_cab for values in(2);
alter table part_cab attach partition part_abc_p1 for values in(3);
prepare part_abc_q1 (int, int, int) as
select * from part_abc where a = $1 and b = $2 and c = $3;
-- Single partition should be scanned.
explain (analyze, costs off, summary off, timing off) execute part_abc_q1 (1, 2, 3);
                        QUERY PLAN                        
----------------------------------------------------------
 Seq Scan on part_abc_p1 part_abc (actual rows=0 loops=1)
   Filter: ((a = $1) AND (b = $2) AND (c = $3))
(2 rows)

deallocate part_abc_q1;
drop table part_abc;
-- Ensure that an Append node properly handles a sub-partitioned table
-- matching without any of its leaf partitions matching the clause.
create table listp (a int, b int) partition by list (a);
create table listp_1 partition of listp for values in(1) partition by list (b);
create table listp_1_1 partition of listp_1 for values in(1);
create table listp_2 partition of listp for values in(2) partition by list (b);
create table listp_2_1 partition of listp_2 for values in(2);
select * from listp where b = 1;
 a | b 
---+---
(0 rows)

-- Ensure that an Append node properly can handle selection of all first level
-- partitions before finally detecting the correct set of 2nd level partitions
-- which match the given parameter.
prepare q1 (int,int) as select * from listp where b in ($1,$2);
explain (analyze, costs off, summary off, timing off)  execute q1 (1,1);
                         QUERY PLAN                          
-------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 1
   ->  Seq Scan on listp_1_1 listp_1 (actual rows=0 loops=1)
         Filter: (b = ANY (ARRAY[$1, $2]))
(4 rows)

explain (analyze, costs off, summary off, timing off)  execute q1 (2,2);
                         QUERY PLAN                          
-------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 1
   ->  Seq Scan on listp_2_1 listp_1 (actual rows=0 loops=1)
         Filter: (b = ANY (ARRAY[$1, $2]))
(4 rows)

-- Try with no matching partitions.
explain (analyze, costs off, summary off, timing off)  execute q1 (0,0);
           QUERY PLAN           
--------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 2
(2 rows)

deallocate q1;
-- Test more complex cases where a not-equal condition further eliminates partitions.
prepare q1 (int,int,int,int) as select * from listp where b in($1,$2) and $3 <> b and $4 <> b;
-- Both partitions allowed by IN clause, but one disallowed by <> clause
explain (analyze, costs off, summary off, timing off)  execute q1 (1,2,2,0);
                               QUERY PLAN                                
-------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 1
   ->  Seq Scan on listp_1_1 listp_1 (actual rows=0 loops=1)
         Filter: ((b = ANY (ARRAY[$1, $2])) AND ($3 <> b) AND ($4 <> b))
(4 rows)

-- Both partitions allowed by IN clause, then both excluded again by <> clauses.
explain (analyze, costs off, summary off, timing off)  execute q1 (1,2,2,1);
           QUERY PLAN           
--------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 2
(2 rows)

-- Ensure Params that evaluate to NULL properly prune away all partitions
explain (analyze, costs off, summary off, timing off)
select * from listp where a = (select null::int);
                      QUERY PLAN                      
------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Seq Scan on listp_1_1 listp_1 (never executed)
         Filter: (a = $0)
   ->  Seq Scan on listp_2_1 listp_2 (never executed)
         Filter: (a = $0)
(7 rows)

drop table listp;
--
-- check that stable query clauses are only used in run-time pruning
--
create table stable_qual_pruning (a timestamp) partition by range (a);
create table stable_qual_pruning1 partition of stable_qual_pruning
  for values from ('2000-01-01') to ('2000-02-01');
create table stable_qual_pruning2 partition of stable_qual_pruning
  for values from ('2000-02-01') to ('2000-03-01');
create table stable_qual_pruning3 partition of stable_qual_pruning
  for values from ('3000-02-01') to ('3000-03-01');
-- comparison against a stable value requires run-time pruning
explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning where a < localtimestamp;
                                      QUERY PLAN                                      
--------------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 1
   ->  Seq Scan on stable_qual_pruning1 stable_qual_pruning_1 (actual rows=0 loops=1)
         Filter: (a < LOCALTIMESTAMP)
   ->  Seq Scan on stable_qual_pruning2 stable_qual_pruning_2 (actual rows=0 loops=1)
         Filter: (a < LOCALTIMESTAMP)
(6 rows)

-- timestamp < timestamptz comparison is only stable, not immutable
explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning where a < '2000-02-01'::timestamptz;
                                      QUERY PLAN                                      
--------------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 2
   ->  Seq Scan on stable_qual_pruning1 stable_qual_pruning_1 (actual rows=0 loops=1)
         Filter: (a < 'Tue Feb 01 00:00:00 2000 PST'::timestamp with time zone)
(4 rows)

-- check ScalarArrayOp cases
explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning
  where a = any(array['2010-02-01', '2020-01-01']::timestamp[]);
           QUERY PLAN           
--------------------------------
 Result (actual rows=0 loops=1)
   One-Time Filter: false
(2 rows)

explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning
  where a = any(array['2000-02-01', '2010-01-01']::timestamp[]);
                                                   QUERY PLAN                                                   
----------------------------------------------------------------------------------------------------------------
 Seq Scan on stable_qual_pruning2 stable_qual_pruning (actual rows=0 loops=1)
   Filter: (a = ANY ('{"Tue Feb 01 00:00:00 2000","Fri Jan 01 00:00:00 2010"}'::timestamp without time zone[]))
(2 rows)

explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning
  where a = any(array['2000-02-01', localtimestamp]::timestamp[]);
                                                 QUERY PLAN                                                 
------------------------------------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 2
   ->  Seq Scan on stable_qual_pruning2 stable_qual_pruning_1 (actual rows=0 loops=1)
         Filter: (a = ANY (ARRAY['Tue Feb 01 00:00:00 2000'::timestamp without time zone, LOCALTIMESTAMP]))
(4 rows)

explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning
  where a = any(array['2010-02-01', '2020-01-01']::timestamptz[]);
           QUERY PLAN           
--------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 3
(2 rows)

explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning
  where a = any(array['2000-02-01', '2010-01-01']::timestamptz[]);
                                                        QUERY PLAN                                                         
---------------------------------------------------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   Subplans Removed: 2
   ->  Seq Scan on stable_qual_pruning2 stable_qual_pruning_1 (actual rows=0 loops=1)
         Filter: (a = ANY ('{"Tue Feb 01 00:00:00 2000 PST","Fri Jan 01 00:00:00 2010 PST"}'::timestamp with time zone[]))
(4 rows)

explain (analyze, costs off, summary off, timing off)
select * from stable_qual_pruning
  where a = any(null::timestamptz[]);
                                      QUERY PLAN                                      
--------------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   ->  Seq Scan on stable_qual_pruning1 stable_qual_pruning_1 (actual rows=0 loops=1)
         Filter: (a = ANY (NULL::timestamp with time zone[]))
   ->  Seq Scan on stable_qual_pruning2 stable_qual_pruning_2 (actual rows=0 loops=1)
         Filter: (a = ANY (NULL::timestamp with time zone[]))
   ->  Seq Scan on stable_qual_pruning3 stable_qual_pruning_3 (actual rows=0 loops=1)
         Filter: (a = ANY (NULL::timestamp with time zone[]))
(7 rows)

drop table stable_qual_pruning;
--
-- Check that pruning with composite range partitioning works correctly when
-- it must ignore clauses for trailing keys once it has seen a clause with
-- non-inclusive operator for an earlier key
--
create table mc3p (a int, b int, c int) partition by range (a, abs(b), c);
create table mc3p0 partition of mc3p
  for values from (0, 0, 0) to (0, maxvalue, maxvalue);
create table mc3p1 partition of mc3p
  for values from (1, 1, 1) to (2, minvalue, minvalue);
create table mc3p2 partition of mc3p
  for values from (2, minvalue, minvalue) to (3, maxvalue, maxvalue);
insert into mc3p values (0, 1, 1), (1, 1, 1), (2, 1, 1);
explain (analyze, costs off, summary off, timing off)
select * from mc3p where a < 3 and abs(b) = 1;
                       QUERY PLAN                       
--------------------------------------------------------
 Append (actual rows=3 loops=1)
   ->  Seq Scan on mc3p0 mc3p_1 (actual rows=1 loops=1)
         Filter: ((a < 3) AND (abs(b) = 1))
   ->  Seq Scan on mc3p1 mc3p_2 (actual rows=1 loops=1)
         Filter: ((a < 3) AND (abs(b) = 1))
   ->  Seq Scan on mc3p2 mc3p_3 (actual rows=1 loops=1)
         Filter: ((a < 3) AND (abs(b) = 1))
(7 rows)

--
-- Check that pruning with composite range partitioning works correctly when
-- a combination of runtime parameters is specified, not all of whose values
-- are available at the same time
--
prepare ps1 as
  select * from mc3p where a = $1 and abs(b) < (select 3);
explain (analyze, costs off, summary off, timing off)
execute ps1(1);
                       QUERY PLAN                       
--------------------------------------------------------
 Append (actual rows=1 loops=1)
   Subplans Removed: 2
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Seq Scan on mc3p1 mc3p_1 (actual rows=1 loops=1)
         Filter: ((a = $1) AND (abs(b) < $0))
(6 rows)

deallocate ps1;
prepare ps2 as
  select * from mc3p where a <= $1 and abs(b) < (select 3);
explain (analyze, costs off, summary off, timing off)
execute ps2(1);
                       QUERY PLAN                       
--------------------------------------------------------
 Append (actual rows=2 loops=1)
   Subplans Removed: 1
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   ->  Seq Scan on mc3p0 mc3p_1 (actual rows=1 loops=1)
         Filter: ((a <= $1) AND (abs(b) < $0))
   ->  Seq Scan on mc3p1 mc3p_2 (actual rows=1 loops=1)
         Filter: ((a <= $1) AND (abs(b) < $0))
(8 rows)

deallocate ps2;
drop table mc3p;
-- Ensure runtime pruning works with initplans params with boolean types
create table boolvalues (value bool not null);
insert into boolvalues values('t'),('f');
create table boolp (a bool) partition by list (a);
create table boolp_t partition of boolp for values in('t');
create table boolp_f partition of boolp for values in('f');
explain (analyze, costs off, summary off, timing off)
select * from boolp where a = (select value from boolvalues where value);
                        QUERY PLAN                         
-----------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Seq Scan on boolvalues (actual rows=1 loops=1)
           Filter: value
           Rows Removed by Filter: 1
   ->  Seq Scan on boolp_f boolp_1 (never executed)
         Filter: (a = $0)
   ->  Seq Scan on boolp_t boolp_2 (actual rows=0 loops=1)
         Filter: (a = $0)
(9 rows)

explain (analyze, costs off, summary off, timing off)
select * from boolp where a = (select value from boolvalues where not value);
                        QUERY PLAN                         
-----------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Seq Scan on boolvalues (actual rows=1 loops=1)
           Filter: (NOT value)
           Rows Removed by Filter: 1
   ->  Seq Scan on boolp_f boolp_1 (actual rows=0 loops=1)
         Filter: (a = $0)
   ->  Seq Scan on boolp_t boolp_2 (never executed)
         Filter: (a = $0)
(9 rows)

drop table boolp;
--
-- Test run-time pruning of MergeAppend subnodes
--
set enable_seqscan = off;
set enable_sort = off;
create table ma_test (a int, b int) partition by range (a);
create table ma_test_p1 partition of ma_test for values from (0) to (10);
create table ma_test_p2 partition of ma_test for values from (10) to (20);
create table ma_test_p3 partition of ma_test for values from (20) to (30);
insert into ma_test select x,x from generate_series(0,29) t(x);
create index on ma_test (b);
analyze ma_test;
prepare mt_q1 (int) as select a from ma_test where a >= $1 and a % 10 = 5 order by b;
explain (analyze, costs off, summary off, timing off) execute mt_q1(15);
                                       QUERY PLAN                                        
-----------------------------------------------------------------------------------------
 Merge Append (actual rows=2 loops=1)
   Sort Key: ma_test.b
   Subplans Removed: 1
   ->  Index Scan using ma_test_p2_b_idx on ma_test_p2 ma_test_1 (actual rows=1 loops=1)
         Filter: ((a >= $1) AND ((a % 10) = 5))
         Rows Removed by Filter: 9
   ->  Index Scan using ma_test_p3_b_idx on ma_test_p3 ma_test_2 (actual rows=1 loops=1)
         Filter: ((a >= $1) AND ((a % 10) = 5))
         Rows Removed by Filter: 9
(9 rows)

execute mt_q1(15);
 a  
----
 15
 25
(2 rows)

explain (analyze, costs off, summary off, timing off) execute mt_q1(25);
                                       QUERY PLAN                                        
-----------------------------------------------------------------------------------------
 Merge Append (actual rows=1 loops=1)
   Sort Key: ma_test.b
   Subplans Removed: 2
   ->  Index Scan using ma_test_p3_b_idx on ma_test_p3 ma_test_1 (actual rows=1 loops=1)
         Filter: ((a >= $1) AND ((a % 10) = 5))
         Rows Removed by Filter: 9
(6 rows)

execute mt_q1(25);
 a  
----
 25
(1 row)

-- Ensure MergeAppend behaves correctly when no subplans match
explain (analyze, costs off, summary off, timing off) execute mt_q1(35);
              QUERY PLAN              
--------------------------------------
 Merge Append (actual rows=0 loops=1)
   Sort Key: ma_test.b
   Subplans Removed: 3
(3 rows)

execute mt_q1(35);
 a 
---
(0 rows)

deallocate mt_q1;
prepare mt_q2 (int) as select * from ma_test where a >= $1 order by b limit 1;
-- Ensure output list looks sane when the MergeAppend has no subplans.
explain (analyze, verbose, costs off, summary off, timing off) execute mt_q2 (35);
                 QUERY PLAN                 
--------------------------------------------
 Limit (actual rows=0 loops=1)
   Output: ma_test.a, ma_test.b
   ->  Merge Append (actual rows=0 loops=1)
         Sort Key: ma_test.b
         Subplans Removed: 3
(5 rows)

deallocate mt_q2;
-- ensure initplan params properly prune partitions
explain (analyze, costs off, summary off, timing off) select * from ma_test where a >= (select min(b) from ma_test_p2) order by b;
                                          QUERY PLAN                                           
-----------------------------------------------------------------------------------------------
 Merge Append (actual rows=20 loops=1)
   Sort Key: ma_test.b
   InitPlan 2 (returns $1)
     ->  Result (actual rows=1 loops=1)
           InitPlan 1 (returns $0)
             ->  Limit (actual rows=1 loops=1)
                   ->  Index Scan using ma_test_p2_b_idx on ma_test_p2 (actual rows=1 loops=1)
                         Index Cond: (b IS NOT NULL)
   ->  Index Scan using ma_test_p1_b_idx on ma_test_p1 ma_test_1 (never executed)
         Filter: (a >= $1)
   ->  Index Scan using ma_test_p2_b_idx on ma_test_p2 ma_test_2 (actual rows=10 loops=1)
         Filter: (a >= $1)
   ->  Index Scan using ma_test_p3_b_idx on ma_test_p3 ma_test_3 (actual rows=10 loops=1)
         Filter: (a >= $1)
(14 rows)

reset enable_seqscan;
reset enable_sort;
drop table ma_test;
reset enable_indexonlyscan;
--
-- check that pruning works properly when the partition key is of a
-- pseudotype
--
-- array type list partition key
create table pp_arrpart (a int[]) partition by list (a);
create table pp_arrpart1 partition of pp_arrpart for values in ('{1}');
create table pp_arrpart2 partition of pp_arrpart for values in ('{2, 3}', '{4, 5}');
explain (costs off) select * from pp_arrpart where a = '{1}';
             QUERY PLAN             
------------------------------------
 Seq Scan on pp_arrpart1 pp_arrpart
   Filter: (a = '{1}'::integer[])
(2 rows)

explain (costs off) select * from pp_arrpart where a = '{1, 2}';
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from pp_arrpart where a in ('{4, 5}', '{1}');
                              QUERY PLAN                              
----------------------------------------------------------------------
 Append
   ->  Seq Scan on pp_arrpart1 pp_arrpart_1
         Filter: ((a = '{4,5}'::integer[]) OR (a = '{1}'::integer[]))
   ->  Seq Scan on pp_arrpart2 pp_arrpart_2
         Filter: ((a = '{4,5}'::integer[]) OR (a = '{1}'::integer[]))
(5 rows)

explain (costs off) update pp_arrpart set a = a where a = '{1}';
                 QUERY PLAN                 
--------------------------------------------
 Update on pp_arrpart
   Update on pp_arrpart1 pp_arrpart_1
   ->  Seq Scan on pp_arrpart1 pp_arrpart_1
         Filter: (a = '{1}'::integer[])
(4 rows)

explain (costs off) delete from pp_arrpart where a = '{1}';
                 QUERY PLAN                 
--------------------------------------------
 Delete on pp_arrpart
   Delete on pp_arrpart1 pp_arrpart_1
   ->  Seq Scan on pp_arrpart1 pp_arrpart_1
         Filter: (a = '{1}'::integer[])
(4 rows)

drop table pp_arrpart;
-- array type hash partition key
create table pph_arrpart (a int[]) partition by hash (a);
create table pph_arrpart1 partition of pph_arrpart for values with (modulus 2, remainder 0);
create table pph_arrpart2 partition of pph_arrpart for values with (modulus 2, remainder 1);
insert into pph_arrpart values ('{1}'), ('{1, 2}'), ('{4, 5}');
select tableoid::regclass, * from pph_arrpart order by 1;
   tableoid   |   a   
--------------+-------
 pph_arrpart1 | {1,2}
 pph_arrpart1 | {4,5}
 pph_arrpart2 | {1}
(3 rows)

explain (costs off) select * from pph_arrpart where a = '{1}';
              QUERY PLAN              
--------------------------------------
 Seq Scan on pph_arrpart2 pph_arrpart
   Filter: (a = '{1}'::integer[])
(2 rows)

explain (costs off) select * from pph_arrpart where a = '{1, 2}';
              QUERY PLAN              
--------------------------------------
 Seq Scan on pph_arrpart1 pph_arrpart
   Filter: (a = '{1,2}'::integer[])
(2 rows)

explain (costs off) select * from pph_arrpart where a in ('{4, 5}', '{1}');
                              QUERY PLAN                              
----------------------------------------------------------------------
 Append
   ->  Seq Scan on pph_arrpart1 pph_arrpart_1
         Filter: ((a = '{4,5}'::integer[]) OR (a = '{1}'::integer[]))
   ->  Seq Scan on pph_arrpart2 pph_arrpart_2
         Filter: ((a = '{4,5}'::integer[]) OR (a = '{1}'::integer[]))
(5 rows)

drop table pph_arrpart;
-- enum type list partition key
create type pp_colors as enum ('green', 'blue', 'black');
create table pp_enumpart (a pp_colors) partition by list (a);
create table pp_enumpart_green partition of pp_enumpart for values in ('green');
create table pp_enumpart_blue partition of pp_enumpart for values in ('blue');
explain (costs off) select * from pp_enumpart where a = 'blue';
                QUERY PLAN                
------------------------------------------
 Seq Scan on pp_enumpart_blue pp_enumpart
   Filter: (a = 'blue'::pp_colors)
(2 rows)

explain (costs off) select * from pp_enumpart where a = 'black';
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

drop table pp_enumpart;
drop type pp_colors;
-- record type as partition key
create type pp_rectype as (a int, b int);
create table pp_recpart (a pp_rectype) partition by list (a);
create table pp_recpart_11 partition of pp_recpart for values in ('(1,1)');
create table pp_recpart_23 partition of pp_recpart for values in ('(2,3)');
explain (costs off) select * from pp_recpart where a = '(1,1)'::pp_rectype;
              QUERY PLAN              
--------------------------------------
 Seq Scan on pp_recpart_11 pp_recpart
   Filter: (a = '(1,1)'::pp_rectype)
(2 rows)

explain (costs off) select * from pp_recpart where a = '(1,2)'::pp_rectype;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

drop table pp_recpart;
drop type pp_rectype;
-- range type partition key
create table pp_intrangepart (a int4range) partition by list (a);
create table pp_intrangepart12 partition of pp_intrangepart for values in ('[1,2]');
create table pp_intrangepart2inf partition of pp_intrangepart for values in ('[2,)');
explain (costs off) select * from pp_intrangepart where a = '[1,2]'::int4range;
                  QUERY PLAN                   
-----------------------------------------------
 Seq Scan on pp_intrangepart12 pp_intrangepart
   Filter: (a = '[1,3)'::int4range)
(2 rows)

explain (costs off) select * from pp_intrangepart where a = '(1,2)'::int4range;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

drop table pp_intrangepart;
--
-- Ensure the enable_partition_prune GUC properly disables partition pruning.
--
create table pp_lp (a int, value int) partition by list (a);
create table pp_lp1 partition of pp_lp for values in(1);
create table pp_lp2 partition of pp_lp for values in(2);
explain (costs off) select * from pp_lp where a = 1;
        QUERY PLAN        
--------------------------
 Seq Scan on pp_lp1 pp_lp
   Filter: (a = 1)
(2 rows)

explain (costs off) update pp_lp set value = 10 where a = 1;
            QUERY PLAN            
----------------------------------
 Update on pp_lp
   Update on pp_lp1 pp_lp_1
   ->  Seq Scan on pp_lp1 pp_lp_1
         Filter: (a = 1)
(4 rows)

explain (costs off) delete from pp_lp where a = 1;
            QUERY PLAN            
----------------------------------
 Delete on pp_lp
   Delete on pp_lp1 pp_lp_1
   ->  Seq Scan on pp_lp1 pp_lp_1
         Filter: (a = 1)
(4 rows)

set enable_partition_pruning = off;
set constraint_exclusion = 'partition'; -- this should not affect the result.
explain (costs off) select * from pp_lp where a = 1;
            QUERY PLAN            
----------------------------------
 Append
   ->  Seq Scan on pp_lp1 pp_lp_1
         Filter: (a = 1)
   ->  Seq Scan on pp_lp2 pp_lp_2
         Filter: (a = 1)
(5 rows)

explain (costs off) update pp_lp set value = 10 where a = 1;
               QUERY PLAN               
----------------------------------------
 Update on pp_lp
   Update on pp_lp1 pp_lp_1
   Update on pp_lp2 pp_lp_2
   ->  Append
         ->  Seq Scan on pp_lp1 pp_lp_1
               Filter: (a = 1)
         ->  Seq Scan on pp_lp2 pp_lp_2
               Filter: (a = 1)
(8 rows)

explain (costs off) delete from pp_lp where a = 1;
               QUERY PLAN               
----------------------------------------
 Delete on pp_lp
   Delete on pp_lp1 pp_lp_1
   Delete on pp_lp2 pp_lp_2
   ->  Append
         ->  Seq Scan on pp_lp1 pp_lp_1
               Filter: (a = 1)
         ->  Seq Scan on pp_lp2 pp_lp_2
               Filter: (a = 1)
(8 rows)

set constraint_exclusion = 'off'; -- this should not affect the result.
explain (costs off) select * from pp_lp where a = 1;
            QUERY PLAN            
----------------------------------
 Append
   ->  Seq Scan on pp_lp1 pp_lp_1
         Filter: (a = 1)
   ->  Seq Scan on pp_lp2 pp_lp_2
         Filter: (a = 1)
(5 rows)

explain (costs off) update pp_lp set value = 10 where a = 1;
               QUERY PLAN               
----------------------------------------
 Update on pp_lp
   Update on pp_lp1 pp_lp_1
   Update on pp_lp2 pp_lp_2
   ->  Append
         ->  Seq Scan on pp_lp1 pp_lp_1
               Filter: (a = 1)
         ->  Seq Scan on pp_lp2 pp_lp_2
               Filter: (a = 1)
(8 rows)

explain (costs off) delete from pp_lp where a = 1;
               QUERY PLAN               
----------------------------------------
 Delete on pp_lp
   Delete on pp_lp1 pp_lp_1
   Delete on pp_lp2 pp_lp_2
   ->  Append
         ->  Seq Scan on pp_lp1 pp_lp_1
               Filter: (a = 1)
         ->  Seq Scan on pp_lp2 pp_lp_2
               Filter: (a = 1)
(8 rows)

drop table pp_lp;
-- Ensure enable_partition_prune does not affect non-partitioned tables.
create table inh_lp (a int, value int);
create table inh_lp1 (a int, value int, check(a = 1)) inherits (inh_lp);
NOTICE:  merging column "a" with inherited definition
NOTICE:  merging column "value" with inherited definition
create table inh_lp2 (a int, value int, check(a = 2)) inherits (inh_lp);
NOTICE:  merging column "a" with inherited definition
NOTICE:  merging column "value" with inherited definition
set constraint_exclusion = 'partition';
-- inh_lp2 should be removed in the following 3 cases.
explain (costs off) select * from inh_lp where a = 1;
             QUERY PLAN             
------------------------------------
 Append
   ->  Seq Scan on inh_lp inh_lp_1
         Filter: (a = 1)
   ->  Seq Scan on inh_lp1 inh_lp_2
         Filter: (a = 1)
(5 rows)

explain (costs off) update inh_lp set value = 10 where a = 1;
                   QUERY PLAN                   
------------------------------------------------
 Update on inh_lp
   Update on inh_lp inh_lp_1
   Update on inh_lp1 inh_lp_2
   ->  Result
         ->  Append
               ->  Seq Scan on inh_lp inh_lp_1
                     Filter: (a = 1)
               ->  Seq Scan on inh_lp1 inh_lp_2
                     Filter: (a = 1)
(9 rows)

explain (costs off) delete from inh_lp where a = 1;
                QUERY PLAN                
------------------------------------------
 Delete on inh_lp
   Delete on inh_lp inh_lp_1
   Delete on inh_lp1 inh_lp_2
   ->  Append
         ->  Seq Scan on inh_lp inh_lp_1
               Filter: (a = 1)
         ->  Seq Scan on inh_lp1 inh_lp_2
               Filter: (a = 1)
(8 rows)

-- Ensure we don't exclude normal relations when we only expect to exclude
-- inheritance children
explain (costs off) update inh_lp1 set value = 10 where a = 2;
        QUERY PLAN         
---------------------------
 Update on inh_lp1
   ->  Seq Scan on inh_lp1
         Filter: (a = 2)
(3 rows)

drop table inh_lp cascade;
NOTICE:  drop cascades to 2 other objects
DETAIL:  drop cascades to table inh_lp1
drop cascades to table inh_lp2
reset enable_partition_pruning;
reset constraint_exclusion;
-- Check pruning for a partition tree containing only temporary relations
create temp table pp_temp_parent (a int) partition by list (a);
create temp table pp_temp_part_1 partition of pp_temp_parent for values in (1);
create temp table pp_temp_part_def partition of pp_temp_parent default;
explain (costs off) select * from pp_temp_parent where true;
                     QUERY PLAN                      
-----------------------------------------------------
 Append
   ->  Seq Scan on pp_temp_part_1 pp_temp_parent_1
   ->  Seq Scan on pp_temp_part_def pp_temp_parent_2
(3 rows)

explain (costs off) select * from pp_temp_parent where a = 2;
                 QUERY PLAN                  
---------------------------------------------
 Seq Scan on pp_temp_part_def pp_temp_parent
   Filter: (a = 2)
(2 rows)

drop table pp_temp_parent;
-- Stress run-time partition pruning a bit more, per bug reports
create temp table p (a int, b int, c int) partition by list (a);
create temp table p1 partition of p for values in (1);
create temp table p2 partition of p for values in (2);
create temp table q (a int, b int, c int) partition by list (a);
create temp table q1 partition of q for values in (1) partition by list (b);
create temp table q11 partition of q1 for values in (1) partition by list (c);
create temp table q111 partition of q11 for values in (1);
create temp table q2 partition of q for values in (2) partition by list (b);
create temp table q21 partition of q2 for values in (1);
create temp table q22 partition of q2 for values in (2);
insert into q22 values (2, 2, 3);
explain (costs off)
select *
from (
      select * from p
      union all
      select * from q1
      union all
      select 1, 1, 1
     ) s(a, b, c)
where s.a = 1 and s.b = 1 and s.c = (select 1);
                     QUERY PLAN                     
----------------------------------------------------
 Append
   InitPlan 1 (returns $0)
     ->  Result
   ->  Seq Scan on p1 p
         Filter: ((a = 1) AND (b = 1) AND (c = $0))
   ->  Seq Scan on q111 q1
         Filter: ((a = 1) AND (b = 1) AND (c = $0))
   ->  Result
         One-Time Filter: (1 = $0)
(9 rows)

select *
from (
      select * from p
      union all
      select * from q1
      union all
      select 1, 1, 1
     ) s(a, b, c)
where s.a = 1 and s.b = 1 and s.c = (select 1);
 a | b | c 
---+---+---
 1 | 1 | 1
(1 row)

prepare q (int, int) as
select *
from (
      select * from p
      union all
      select * from q1
      union all
      select 1, 1, 1
     ) s(a, b, c)
where s.a = $1 and s.b = $2 and s.c = (select 1);
explain (costs off) execute q (1, 1);
                          QUERY PLAN                           
---------------------------------------------------------------
 Append
   Subplans Removed: 1
   InitPlan 1 (returns $0)
     ->  Result
   ->  Seq Scan on p1 p
         Filter: ((a = $1) AND (b = $2) AND (c = $0))
   ->  Seq Scan on q111 q1
         Filter: ((a = $1) AND (b = $2) AND (c = $0))
   ->  Result
         One-Time Filter: ((1 = $1) AND (1 = $2) AND (1 = $0))
(10 rows)

execute q (1, 1);
 a | b | c 
---+---+---
 1 | 1 | 1
(1 row)

drop table p, q;
-- Ensure run-time pruning works correctly when we match a partitioned table
-- on the first level but find no matching partitions on the second level.
create table listp (a int, b int) partition by list (a);
create table listp1 partition of listp for values in(1);
create table listp2 partition of listp for values in(2) partition by list(b);
create table listp2_10 partition of listp2 for values in (10);
explain (analyze, costs off, summary off, timing off)
select * from listp where a = (select 2) and b <> 10;
                    QUERY PLAN                    
--------------------------------------------------
 Seq Scan on listp1 listp (actual rows=0 loops=1)
   Filter: ((b <> 10) AND (a = $0))
   InitPlan 1 (returns $0)
     ->  Result (never executed)
(4 rows)

--
-- check that a partition directly accessed in a query is excluded with
-- constraint_exclusion = on
--
-- turn off partition pruning, so that it doesn't interfere
set enable_partition_pruning to off;
-- setting constraint_exclusion to 'partition' disables exclusion
set constraint_exclusion to 'partition';
explain (costs off) select * from listp1 where a = 2;
     QUERY PLAN     
--------------------
 Seq Scan on listp1
   Filter: (a = 2)
(2 rows)

explain (costs off) update listp1 set a = 1 where a = 2;
        QUERY PLAN        
--------------------------
 Update on listp1
   ->  Seq Scan on listp1
         Filter: (a = 2)
(3 rows)

-- constraint exclusion enabled
set constraint_exclusion to 'on';
explain (costs off) select * from listp1 where a = 2;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) update listp1 set a = 1 where a = 2;
           QUERY PLAN           
--------------------------------
 Update on listp1
   ->  Result
         One-Time Filter: false
(3 rows)

reset constraint_exclusion;
reset enable_partition_pruning;
drop table listp;
-- Ensure run-time pruning works correctly for nested Append nodes
set parallel_setup_cost to 0;
set parallel_tuple_cost to 0;
create table listp (a int) partition by list(a);
create table listp_12 partition of listp for values in(1,2) partition by list(a);
create table listp_12_1 partition of listp_12 for values in(1);
create table listp_12_2 partition of listp_12 for values in(2);
-- Force the 2nd subnode of the Append to be non-parallel.  This results in
-- a nested Append node because the mixed parallel / non-parallel paths cannot
-- be pulled into the top-level Append.
alter table listp_12_1 set (parallel_workers = 0);
-- Ensure that listp_12_2 is not scanned.  (The nested Append is not seen in
-- the plan as it's pulled in setref.c due to having just a single subnode).
select explain_parallel_append('select * from listp where a = (select 1);');
                       explain_parallel_append                        
----------------------------------------------------------------------
 Gather (actual rows=N loops=N)
   Workers Planned: 2
   Params Evaluated: $0
   Workers Launched: N
   InitPlan 1 (returns $0)
     ->  Result (actual rows=N loops=N)
   ->  Parallel Append (actual rows=N loops=N)
         ->  Seq Scan on listp_12_1 listp_1 (actual rows=N loops=N)
               Filter: (a = $0)
         ->  Parallel Seq Scan on listp_12_2 listp_2 (never executed)
               Filter: (a = $0)
(11 rows)

-- Like the above but throw some more complexity at the planner by adding
-- a UNION ALL.  We expect both sides of the union not to scan the
-- non-required partitions.
select explain_parallel_append(
'select * from listp where a = (select 1)
  union all
select * from listp where a = (select 2);');
                              explain_parallel_append                              
-----------------------------------------------------------------------------------
 Append (actual rows=N loops=N)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Params Evaluated: $0
         Workers Launched: N
         InitPlan 1 (returns $0)
           ->  Result (actual rows=N loops=N)
         ->  Parallel Append (actual rows=N loops=N)
               ->  Seq Scan on listp_12_1 listp_1 (actual rows=N loops=N)
                     Filter: (a = $0)
               ->  Parallel Seq Scan on listp_12_2 listp_2 (never executed)
                     Filter: (a = $0)
   ->  Gather (actual rows=N loops=N)
         Workers Planned: 2
         Params Evaluated: $1
         Workers Launched: N
         InitPlan 2 (returns $1)
           ->  Result (actual rows=N loops=N)
         ->  Parallel Append (actual rows=N loops=N)
               ->  Seq Scan on listp_12_1 listp_4 (never executed)
                     Filter: (a = $1)
               ->  Parallel Seq Scan on listp_12_2 listp_5 (actual rows=N loops=N)
                     Filter: (a = $1)
(23 rows)

drop table listp;
reset parallel_tuple_cost;
reset parallel_setup_cost;
-- Test case for run-time pruning with a nested Merge Append
set enable_sort to 0;
create table rangep (a int, b int) partition by range (a);
create table rangep_0_to_100 partition of rangep for values from (0) to (100) partition by list (b);
-- We need 3 sub-partitions. 1 to validate pruning worked and another two
-- because a single remaining partition would be pulled up to the main Append.
create table rangep_0_to_100_1 partition of rangep_0_to_100 for values in(1);
create table rangep_0_to_100_2 partition of rangep_0_to_100 for values in(2);
create table rangep_0_to_100_3 partition of rangep_0_to_100 for values in(3);
create table rangep_100_to_200 partition of rangep for values from (100) to (200);
create index on rangep (a);
-- Ensure run-time pruning works on the nested Merge Append
explain (analyze on, costs off, timing off, summary off)
select * from rangep where b IN((select 1),(select 2)) order by a;
                                                 QUERY PLAN                                                 
------------------------------------------------------------------------------------------------------------
 Append (actual rows=0 loops=1)
   InitPlan 1 (returns $0)
     ->  Result (actual rows=1 loops=1)
   InitPlan 2 (returns $1)
     ->  Result (actual rows=1 loops=1)
   ->  Merge Append (actual rows=0 loops=1)
         Sort Key: rangep_2.a
         ->  Index Scan using rangep_0_to_100_1_a_idx on rangep_0_to_100_1 rangep_2 (actual rows=0 loops=1)
               Filter: (b = ANY (ARRAY[$0, $1]))
         ->  Index Scan using rangep_0_to_100_2_a_idx on rangep_0_to_100_2 rangep_3 (actual rows=0 loops=1)
               Filter: (b = ANY (ARRAY[$0, $1]))
         ->  Index Scan using rangep_0_to_100_3_a_idx on rangep_0_to_100_3 rangep_4 (never executed)
               Filter: (b = ANY (ARRAY[$0, $1]))
   ->  Index Scan using rangep_100_to_200_a_idx on rangep_100_to_200 rangep_5 (actual rows=0 loops=1)
         Filter: (b = ANY (ARRAY[$0, $1]))
(15 rows)

reset enable_sort;
drop table rangep;
--
-- Check that gen_prune_steps_from_opexps() works well for various cases of
-- clauses for different partition keys
--
create table rp_prefix_test1 (a int, b varchar) partition by range(a, b);
create table rp_prefix_test1_p1 partition of rp_prefix_test1 for values from (1, 'a') to (1, 'b');
create table rp_prefix_test1_p2 partition of rp_prefix_test1 for values from (2, 'a') to (2, 'b');
-- Don't call get_steps_using_prefix() with the last partition key b plus
-- an empty prefix
explain (costs off) select * from rp_prefix_test1 where a <= 1 and b = 'a';
                    QUERY PLAN                    
--------------------------------------------------
 Seq Scan on rp_prefix_test1_p1 rp_prefix_test1
   Filter: ((a <= 1) AND ((b)::text = 'a'::text))
(2 rows)

create table rp_prefix_test2 (a int, b int, c int) partition by range(a, b, c);
create table rp_prefix_test2_p1 partition of rp_prefix_test2 for values from (1, 1, 0) to (1, 1, 10);
create table rp_prefix_test2_p2 partition of rp_prefix_test2 for values from (2, 2, 0) to (2, 2, 10);
-- Don't call get_steps_using_prefix() with the last partition key c plus
-- an invalid prefix (ie, b = 1)
explain (costs off) select * from rp_prefix_test2 where a <= 1 and b = 1 and c >= 0;
                   QUERY PLAN                   
------------------------------------------------
 Seq Scan on rp_prefix_test2_p1 rp_prefix_test2
   Filter: ((a <= 1) AND (c >= 0) AND (b = 1))
(2 rows)

create table rp_prefix_test3 (a int, b int, c int, d int) partition by range(a, b, c, d);
create table rp_prefix_test3_p1 partition of rp_prefix_test3 for values from (1, 1, 1, 0) to (1, 1, 1, 10);
create table rp_prefix_test3_p2 partition of rp_prefix_test3 for values from (2, 2, 2, 0) to (2, 2, 2, 10);
-- Test that get_steps_using_prefix() handles a prefix that contains multiple
-- clauses for the partition key b (ie, b >= 1 and b >= 2)
explain (costs off) select * from rp_prefix_test3 where a >= 1 and b >= 1 and b >= 2 and c >= 2 and d >= 0;
                                QUERY PLAN                                
--------------------------------------------------------------------------
 Seq Scan on rp_prefix_test3_p2 rp_prefix_test3
   Filter: ((a >= 1) AND (b >= 1) AND (b >= 2) AND (c >= 2) AND (d >= 0))
(2 rows)

-- Test that get_steps_using_prefix() handles a prefix that contains multiple
-- clauses for the partition key b (ie, b >= 1 and b = 2)  (This also tests
-- that the caller arranges clauses in that prefix in the required order)
explain (costs off) select * from rp_prefix_test3 where a >= 1 and b >= 1 and b = 2 and c = 2 and d >= 0;
                               QUERY PLAN                               
------------------------------------------------------------------------
 Seq Scan on rp_prefix_test3_p2 rp_prefix_test3
   Filter: ((a >= 1) AND (b >= 1) AND (d >= 0) AND (b = 2) AND (c = 2))
(2 rows)

drop table rp_prefix_test1;
drop table rp_prefix_test2;
drop table rp_prefix_test3;
--
-- Test that get_steps_using_prefix() handles IS NULL clauses correctly
--
create table hp_prefix_test (a int, b int, c int, d int)
  partition by hash (a part_test_int4_ops, b part_test_int4_ops, c part_test_int4_ops, d part_test_int4_ops);
-- create 8 partitions
select 'create table hp_prefix_test_p' || x::text || ' partition of hp_prefix_test for values with (modulus 8, remainder ' || x::text || ');'
from generate_Series(0,7) x;
                                               ?column?                                               
------------------------------------------------------------------------------------------------------
 create table hp_prefix_test_p0 partition of hp_prefix_test for values with (modulus 8, remainder 0);
 create table hp_prefix_test_p1 partition of hp_prefix_test for values with (modulus 8, remainder 1);
 create table hp_prefix_test_p2 partition of hp_prefix_test for values with (modulus 8, remainder 2);
 create table hp_prefix_test_p3 partition of hp_prefix_test for values with (modulus 8, remainder 3);
 create table hp_prefix_test_p4 partition of hp_prefix_test for values with (modulus 8, remainder 4);
 create table hp_prefix_test_p5 partition of hp_prefix_test for values with (modulus 8, remainder 5);
 create table hp_prefix_test_p6 partition of hp_prefix_test for values with (modulus 8, remainder 6);
 create table hp_prefix_test_p7 partition of hp_prefix_test for values with (modulus 8, remainder 7);
(8 rows)

\gexec
create table hp_prefix_test_p0 partition of hp_prefix_test for values with (modulus 8, remainder 0);
create table hp_prefix_test_p1 partition of hp_prefix_test for values with (modulus 8, remainder 1);
create table hp_prefix_test_p2 partition of hp_prefix_test for values with (modulus 8, remainder 2);
create table hp_prefix_test_p3 partition of hp_prefix_test for values with (modulus 8, remainder 3);
create table hp_prefix_test_p4 partition of hp_prefix_test for values with (modulus 8, remainder 4);
create table hp_prefix_test_p5 partition of hp_prefix_test for values with (modulus 8, remainder 5);
create table hp_prefix_test_p6 partition of hp_prefix_test for values with (modulus 8, remainder 6);
create table hp_prefix_test_p7 partition of hp_prefix_test for values with (modulus 8, remainder 7);
-- insert 16 rows, one row for each test to perform.
insert into hp_prefix_test
select
  case a when 0 then null else 1 end,
  case b when 0 then null else 2 end,
  case c when 0 then null else 3 end,
  case d when 0 then null else 4 end
from
  generate_series(0,1) a,
  generate_series(0,1) b,
  generate_Series(0,1) c,
  generate_Series(0,1) d;
-- Ensure partition pruning works correctly for each combination of IS NULL
-- and equality quals.  This may seem a little excessive, but there have been
-- a number of bugs in this area over the years.  We make use of row only
-- output to reduce the size of the expected results.
\t on
select
  'explain (costs off) select tableoid::regclass,* from hp_prefix_test where ' ||
  string_agg(c.colname || case when g.s & (1 << c.colpos) = 0 then ' is null' else ' = ' || (colpos+1)::text end, ' and ' order by c.colpos)
from (values('a',0),('b',1),('c',2),('d',3)) c(colname, colpos), generate_Series(0,15) g(s)
group by g.s
order by g.s;
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d is null
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d = 4
 explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d = 4

\gexec
explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d is null
 Seq Scan on hp_prefix_test_p0 hp_prefix_test
   Filter: ((a IS NULL) AND (b IS NULL) AND (c IS NULL) AND (d IS NULL))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d is null
 Seq Scan on hp_prefix_test_p1 hp_prefix_test
   Filter: ((b IS NULL) AND (c IS NULL) AND (d IS NULL) AND (a = 1))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d is null
 Seq Scan on hp_prefix_test_p2 hp_prefix_test
   Filter: ((a IS NULL) AND (c IS NULL) AND (d IS NULL) AND (b = 2))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d is null
 Seq Scan on hp_prefix_test_p4 hp_prefix_test
   Filter: ((c IS NULL) AND (d IS NULL) AND (a = 1) AND (b = 2))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d is null
 Seq Scan on hp_prefix_test_p3 hp_prefix_test
   Filter: ((a IS NULL) AND (b IS NULL) AND (d IS NULL) AND (c = 3))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d is null
 Seq Scan on hp_prefix_test_p7 hp_prefix_test
   Filter: ((b IS NULL) AND (d IS NULL) AND (a = 1) AND (c = 3))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d is null
 Seq Scan on hp_prefix_test_p4 hp_prefix_test
   Filter: ((a IS NULL) AND (d IS NULL) AND (b = 2) AND (c = 3))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d is null
 Seq Scan on hp_prefix_test_p5 hp_prefix_test
   Filter: ((d IS NULL) AND (a = 1) AND (b = 2) AND (c = 3))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d = 4
 Seq Scan on hp_prefix_test_p4 hp_prefix_test
   Filter: ((a IS NULL) AND (b IS NULL) AND (c IS NULL) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d = 4
 Seq Scan on hp_prefix_test_p6 hp_prefix_test
   Filter: ((b IS NULL) AND (c IS NULL) AND (a = 1) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d = 4
 Seq Scan on hp_prefix_test_p5 hp_prefix_test
   Filter: ((a IS NULL) AND (c IS NULL) AND (b = 2) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d = 4
 Seq Scan on hp_prefix_test_p6 hp_prefix_test
   Filter: ((c IS NULL) AND (a = 1) AND (b = 2) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d = 4
 Seq Scan on hp_prefix_test_p4 hp_prefix_test
   Filter: ((a IS NULL) AND (b IS NULL) AND (c = 3) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d = 4
 Seq Scan on hp_prefix_test_p5 hp_prefix_test
   Filter: ((b IS NULL) AND (a = 1) AND (c = 3) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d = 4
 Seq Scan on hp_prefix_test_p6 hp_prefix_test
   Filter: ((a IS NULL) AND (b = 2) AND (c = 3) AND (d = 4))

explain (costs off) select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d = 4
 Seq Scan on hp_prefix_test_p4 hp_prefix_test
   Filter: ((a = 1) AND (b = 2) AND (c = 3) AND (d = 4))

-- And ensure we get exactly 1 row from each. Again, all 16 possible combinations.
select
  'select tableoid::regclass,* from hp_prefix_test where ' ||
  string_agg(c.colname || case when g.s & (1 << c.colpos) = 0 then ' is null' else ' = ' || (colpos+1)::text end, ' and ' order by c.colpos)
from (values('a',0),('b',1),('c',2),('d',3)) c(colname, colpos), generate_Series(0,15) g(s)
group by g.s
order by g.s;
 select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d is null
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d is null
 select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d is null
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d is null
 select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d is null
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d is null
 select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d is null
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d is null
 select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d = 4
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d = 4
 select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d = 4
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d = 4
 select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d = 4
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d = 4
 select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d = 4
 select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d = 4

\gexec
select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d is null
 hp_prefix_test_p0 |   |   |   |  

select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d is null
 hp_prefix_test_p1 | 1 |   |   |  

select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d is null
 hp_prefix_test_p2 |   | 2 |   |  

select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d is null
 hp_prefix_test_p4 | 1 | 2 |   |  

select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d is null
 hp_prefix_test_p3 |   |   | 3 |  

select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d is null
 hp_prefix_test_p7 | 1 |   | 3 |  

select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d is null
 hp_prefix_test_p4 |   | 2 | 3 |  

select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d is null
 hp_prefix_test_p5 | 1 | 2 | 3 |  

select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c is null and d = 4
 hp_prefix_test_p4 |   |   |   | 4

select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c is null and d = 4
 hp_prefix_test_p6 | 1 |   |   | 4

select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c is null and d = 4
 hp_prefix_test_p5 |   | 2 |   | 4

select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c is null and d = 4
 hp_prefix_test_p6 | 1 | 2 |   | 4

select tableoid::regclass,* from hp_prefix_test where a is null and b is null and c = 3 and d = 4
 hp_prefix_test_p4 |   |   | 3 | 4

select tableoid::regclass,* from hp_prefix_test where a = 1 and b is null and c = 3 and d = 4
 hp_prefix_test_p5 | 1 |   | 3 | 4

select tableoid::regclass,* from hp_prefix_test where a is null and b = 2 and c = 3 and d = 4
 hp_prefix_test_p6 |   | 2 | 3 | 4

select tableoid::regclass,* from hp_prefix_test where a = 1 and b = 2 and c = 3 and d = 4
 hp_prefix_test_p4 | 1 | 2 | 3 | 4

\t off
drop table hp_prefix_test;
--
-- Check that gen_partprune_steps() detects self-contradiction from clauses
-- regardless of the order of the clauses (Here we use a custom operator to
-- prevent the equivclass.c machinery from reordering the clauses)
--
create operator === (
   leftarg = int4,
   rightarg = int4,
   procedure = int4eq,
   commutator = ===,
   hashes
);
create operator class part_test_int4_ops2
for type int4
using hash as
operator 1 ===,
function 2 part_hashint4_noop(int4, int8);
create table hp_contradict_test (a int, b int) partition by hash (a part_test_int4_ops2, b part_test_int4_ops2);
create table hp_contradict_test_p1 partition of hp_contradict_test for values with (modulus 2, remainder 0);
create table hp_contradict_test_p2 partition of hp_contradict_test for values with (modulus 2, remainder 1);
explain (costs off) select * from hp_contradict_test where a is null and a === 1 and b === 1;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

explain (costs off) select * from hp_contradict_test where a === 1 and b === 1 and a is null;
        QUERY PLAN        
--------------------------
 Result
   One-Time Filter: false
(2 rows)

drop table hp_contradict_test;
drop operator class part_test_int4_ops2 using hash;
drop operator ===(int4, int4);