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
|
package org.apache.derbyTesting.functionTests.tests.lang;
import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.Statement;
import java.util.Arrays;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.RuntimeStatisticsParser;
import org.apache.derbyTesting.junit.SQLUtilities;
import org.apache.derbyTesting.junit.SystemPropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.PredicatePushdownTest
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
public final class PredicatePushdownTest extends BaseJDBCTestCase {
/**
* Public constructor required for running test as standalone JUnit.
*/
public PredicatePushdownTest(String name) {
super(name);
}
public static Test suite() {
Properties systemProperties = new Properties();
systemProperties.setProperty("derby.optimizer.noTimeout","true");
BaseTestSuite suite = new BaseTestSuite("predicatePushdown Test");
suite.addTest(new SystemPropertyTestSetup(new CleanDatabaseTestSetup(TestConfiguration
.embeddedSuite(PredicatePushdownTest.class)),systemProperties));
return suite;
}
public void test_predicatePushdown() throws Exception {
ResultSet rs = null;
ResultSetMetaData rsmd;
PreparedStatement pSt;
CallableStatement cSt;
Statement st = createStatement();
String[][] expRS;
String[] expColNames;
// Licensed to the Apache Software Foundation (ASF)
// under one or more contributor license agreements. See
// the NOTICE file distributed with this work for
// additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache
// License, Version 2.0 (the "License"); you may not use
// this file except in compliance with the License. You
// may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0 Unless
// required by applicable law or agreed to in writing,
// software distributed under the License is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
// OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions
// and limitations under the License. Test predicate
// pushdown into expressions in a FROM list. As of
// DERBY-805 this test only looks at pushing predicates
// into UNION operators, but this test will likely grow as
// additional predicate pushdown functionality is added to
// Derby. Note that "noTimeout" is set to true for this
// test because we print out a lot of query plans and we
// don't want the plans to differ from one machine to
// another (which can happen if some machines are faster
// than others when noTimeout is false). Create the basic
// tables/views for DERBY-805 testing.
st
.executeUpdate("CREATE TABLE \"APP\".\"T1\" (\"I\" INTEGER, \"J\" INTEGER)");
st.executeUpdate(" insert into t1 values (1, 2), (2, 4), (3, 6), (4, "
+ "8), (5, 10)");
st
.executeUpdate(" CREATE TABLE \"APP\".\"T2\" (\"I\" INTEGER, \"J\" INTEGER)");
st.executeUpdate(" insert into t2 values (1, 2), (2, -4), (3, 6), (4, "
+ "-8), (5, 10)");
st
.executeUpdate(" CREATE TABLE \"APP\".\"T3\" (\"A\" INTEGER, \"B\" INTEGER)");
st.executeUpdate(" insert into T3 values (1,1), (2,2), (3,3), (4,4), "
+ "(6, 24), (7, 28), (8, 32), (9, 36), (10, 40)");
st.executeUpdate(" insert into t3 (a) values 11, 12, 13, 14, 15, 16, "
+ "17, 18, 19, 20");
assertUpdateCount(st, 10, " update t3 set b = 2 * a where a > 10");
st
.executeUpdate(" CREATE TABLE \"APP\".\"T4\" (\"A\" INTEGER, \"B\" INTEGER)");
st.executeUpdate(" insert into t4 values (3, 12), (4, 16)");
st.executeUpdate(" insert into t4 (a) values 11, 12, 13, 14, 15, 16, "
+ "17, 18, 19, 20");
assertUpdateCount(st, 10, " update t4 set b = 2 * a where a > 10");
st.executeUpdate(" create view V1 as select i, j from T1 union select "
+ "i,j from T2");
st.executeUpdate(" create view V2 as select a,b from T3 union select "
+ "a,b from T4");
// Run compression on the test tables to try to get a
// consistent set of row count stats for the tables
// (DERBY-1902, DERBY-3479).
cSt = prepareCall("call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T1', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T2', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T3', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T4', 1)");
assertUpdateCount(cSt, 0);
// Now that we have the basic tables and views for the
// tests, run some quick queries to make sure that the
// optimizer will still consider NOT pushing the predicates
// and will instead do a hash join. The optimizer should
// choose do this so long as doing so is the best choice,
// which usually means that we don't have indexes on the
// tables or else we have relatively small tables. Start
// by checking the case of small (~20 row) tables. We
// should see hash joins and table scans in ALL of these
// cases.
st.execute("CALL SYSCS_UTIL.SYSCS_SET_RUNTIMESTATISTICS(1)");
rs = st.executeQuery("select * from V1, V2 where V1.j = V2.b");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "2", "2" }, { "2", "4", "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
RuntimeStatisticsParser p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan", p.usedTableScan());
assertTrue("Expected hash join", p.usedHashJoin());
rs = st.executeQuery("select * from V2, V1 where V1.j = V2.b");
expColNames = new String[] { "A", "B", "I", "J" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2", "1", "2" }, { "4", "4", "2", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan", p.usedTableScan());
assertTrue("Expected hash join", p.usedHashJoin());
// Nested unions.
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2 union select * from t1 union select * from t2 ) "
+ "x1, (select * from t3 union select * from t4 union "
+ "select * from t4 ) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan", p.usedTableScan());
assertTrue("Expected hash join", p.usedHashJoin());
rs = st
.executeQuery("select * from (select * from t1 union all select * "
+ "from t2) x1, (select * from t3 union select * from "
+ "t4) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "8", "4", "4" },
{ "4", "8", "4", "16" }, { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "-8", "4", "4" },
{ "4", "-8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan", p.usedTableScan());
assertTrue("Expected hash join", p.usedHashJoin());
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2) x1, (select * from t3 union all select * from "
+ "t4) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan", p.usedTableScan());
assertTrue("Expected hash join", p.usedHashJoin());
rs = st
.executeQuery("select * from (select * from t1 union all select * "
+ "from t2) x1, (select * from t3 union all select * "
+ "from t4) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "8", "4", "4" },
{ "4", "8", "4", "16" }, { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "-8", "4", "4" },
{ "4", "-8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan", p.usedTableScan());
assertTrue("Expected hash join", p.usedHashJoin());
// Next set of queries tests pushdown of predicates whose
// column references do not reference base tables--ex. they
// reference literals, aggregates, or subqueries. We don't
// check the query plans here, we're just checking to make
// sure pushdown doesn't cause problems during compilation/
// execution. In the case of regressions, errors that
// might show up here include compile-time NPEs,
// execution-time NPEs, errors saying no predicate was
// found for a hash join, and/or type comparison errors
// caused by incorrect column numbers for scoped predicates.
st.executeUpdate("create table tc (c1 char, c2 char, c3 char, c int)");
st.executeUpdate(" create view vz (z1, z2, z3, z4) as select distinct "
+ "xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from (select "
+ "c1, c, c2, c3 from tc) xx1 union select "
+ "'i','j','j',i from t2");
st.executeUpdate(" create view vz2 (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c, c2, c3 from tc) xx1");
st.executeUpdate(" create view vz3 (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c, c2, 28 from tc) xx1 union select "
+ "'i','j','j',i from t2");
st.executeUpdate(" create view vz4 (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c, c2, 28 from tc) xx1 union select "
+ "'i','j','j',i from t2 union select c1, c2, c3, c from tc");
// For DERBY-1866. The problem for DERBY-1866 was that,
// when pushing predicates to subqueries beneath UNIONs,
// the predicates were always being pushed to the *first*
// table in the FROM list, regardless of whether or not
// that was actually the correct table. For the test query
// that uses this view (see below) the predicate is
// supposed to be pushed to TC, so in order to repro the
// DERBY-1866 failure we want to make sure that TC is *not*
// the first table in the FROM list. Thus we use the
// optimizer override to fix the join order so that TC is
// the second table.
st.executeUpdate("create view vz5a (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c2, c3, c from "
+ "--DERBY-PROPERTIES joinOrder=FIXED \n"
+ "t2, tc where tc.c = t2.i) xx1 union "
+ "select 'i','j','j',i from t2");
// Same as above but target FromTable in subquery is
// itself another subquery.
st.executeUpdate("create view vz5b (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c2, c3, c from --DERBY-PROPERTIES "
+ "joinOrder=FIXED \n t2, (select distinct * from tc) tc "
+ "where tc.c = t2.i) xx1 union select 'i','j','j',i from t2");
// Same as above but target FromTable in subquery is
// another union node between two subqueries.
st.executeUpdate("create view vz5c (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c2, c3, c from --DERBY-PROPERTIES "
+ "joinOrder=FIXED \n t2, (select * from tc union select "
+ "* from tc) tc where tc.c = t2.i) xx1 union select "
+ "'i','j','j',i from t2");
// Same as above but target FromTable in subquery is
// another full query with unions and subqueries.
st.executeUpdate("create view vz5d (z1, z2, z3, z4) as select "
+ "distinct xx1.c1, xx1.c2, 'bokibob' bb, xx1.c from "
+ "(select c1, c2, c3, c from --DERBY-PROPERTIES "
+ "joinOrder=FIXED \n t2, (select * from tc union select "
+ "z1 c1, z2 c2, z3 c3, z4 c from vz5b) tc where tc.c "
+ "= t2.i) xx1 union select 'i','j','j',i from t2");
// Both sides of predicate reference aggregates.
rs = st
.executeQuery("select x1.c1 from (select count(*) from t1 union "
+ "select count(*) from t2) x1 (c1), (select count(*) "
+ "from t3 union select count(*) from t4) x2 (c2) "
+ "where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Both sides of predicate reference aggregates, and
// predicate is pushed through to non-flattenable nested
// subquery.
rs = st.executeQuery("select x1.c1 from (select count(*) from (select "
+ "distinct j from t1) xx1 union select count(*) from "
+ "t2 ) x1 (c1), (select count(*) from t3 union select "
+ "count(*) from t4) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Both sides of predicate reference aggregates, and
// predicate is pushed through to non-flattenable nested
// subquery that is in turn part of a nested union.
rs = st.executeQuery("select x1.c1 from (select count(*) from (select "
+ "distinct j from t1 union select distinct j from t2) "
+ "xx1 union select count(*) from t2 ) x1 (c1), "
+ "(select count(*) from t3 union select count(*) from "
+ "t4) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Left side of predicate references base column, right
// side references aggregate; predicate is pushed through
// to non- flattenable nested subquery.
rs = st.executeQuery("select x1.c1 from (select xx1.c from (select "
+ "distinct c, c1 from tc) xx1 union select count(*) "
+ "from t2 ) x1 (c1), (select count(*) from t3 union "
+ "select count(*) from t4) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Left side of predicate references base column, right
// side references aggregate; predicate is pushed through
// to non- flattenable nested subquery.
rs = st
.executeQuery("select x1.c1 from (select xx1.c from (select c, c1 "
+ "from tc) xx1 union select count(*) from t2 ) x1 "
+ "(c1), (select count(*) from t3 union select "
+ "count(*) from t4) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Left side of predicate references base column, right
// side side references aggregate; predicate is pushed
// through to a subquery in a nested union that has
// literals in its result column.
rs = st
.executeQuery("select x1.z1 from (select xx1.c1, xx1.c2, xx1.c, "
+ "xx1.c3 from (select c1, c2, c3, c from tc) xx1 "
+ "union select 'i','j',j,'i' from t2 ) x1 (z1, z2, "
+ "z3, z4), (select count(*) from t3 union select "
+ "count (*) from t4) x2 (c2) where x1.z3 = x2.c2");
expColNames = new String[] { "Z1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Both sides of predicate reference base columns;
// predicate predicate is pushed through to a subquery in a
// nested union that has literals in its result column.
rs = st
.executeQuery("select x1.z1 from (select xx1.c1, xx1.c2, xx1.c, "
+ "xx1.c3 from (select c1, c2, c3, c from tc) xx1 "
+ "union select 'i','j',j,'i' from t2 ) x1 (z1, z2, "
+ "z3, z4), (select a from t3 union select count (*) "
+ "from t4) x2 (c2) where x1.z3 = x2.c2");
expColNames = new String[] { "Z1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "i" }, { "i" }, { "i" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous query, but with aggregate/base column
// in x2 switched.
rs = st
.executeQuery("select x1.z1 from (select xx1.c1, xx1.c2, xx1.c, "
+ "xx1.c3 from (select c1, c2, c3, c from tc) xx1 "
+ "union select 'i','j',j,'i' from t2 ) x1 (z1, z2, "
+ "z3, z4), (select count(*) from t3 union select a "
+ "from t4) x2 (c2) where x1.z3 = x2.c2");
expColNames = new String[] { "Z1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Left side references aggregate, right side references
// base column; predicate is pushed to non-flattenable
// subquery that is part of a nested union for which one
// child references a base column and the other references
// an aggregate.
rs = st.executeQuery("select x1.c1 from (select count(*) from (select "
+ "distinct j from t1) xx1 union select count(*) from "
+ "t2 ) x1 (c1), (select a from t3 union select a from "
+ "t4) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Same as previous query, but both children of inner-most
// union reference base columns.
rs = st.executeQuery("select x1.c1 from (select count(*) from (select "
+ "distinct j from t1) xx1 union select i from t2 ) x1 "
+ "(c1), (select a from t3 union select a from t4) x2 "
+ "(c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1" }, { "2" }, { "3" }, { "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Left side references aggregate, right side references
// base column; predicate is pushed to non-flattenable
// subquery that is part of a nested union for which one
// child references a base column and the other references
// an aggregate.
rs = st.executeQuery("select x1.c1 from (select count(*) from (select "
+ "distinct j from t1) xx1 union select count(*) from "
+ "t2 ) x1 (c1), (select i from t2 union select i from "
+ "t1) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous query, but one child of x2 references
// a literal.
rs = st.executeQuery("select x1.c1 from (select count(*) from (select "
+ "distinct j from t1) xx1 union select count(*) from "
+ "t2 ) x1 (c1), (select 1 from t2 union select i from "
+ "t1) x2 (c2) where x1.c1 = x2.c2");
expColNames = new String[] { "C1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Left side of predicate references a base column that is
// deeply nested inside a subquery, a union, and a view,
// the latter of which itself has a union between two
// nested subqueries (whew). And finally, the position of
// the base column w.r.t the outer query (x1) is different
// than it is with respect to inner view (vz).
rs = st
.executeQuery("select x1.z4 from (select z1, z4, z3 from vz union "
+ "select '1', 4, '3' from t1 ) x1 (z1, z4, z3), "
+ "(select distinct j from t2 union select j from t1) "
+ "x2 (c2) where x1.z4 = x2.c2");
expColNames = new String[] { "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "4" }, { "2" }, { "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as above but with an expression ("i+1") instead of
// a numeric literal.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select z1, z4, z3 from vz "
+ "union select '1', i+1, '3' from t1 ) x1 (z1, z4, "
+ "z3), (select distinct j from t2 union select j from "
+ "t1) x2 (c2) where x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2" }, { "4", "4" }, { "6", "6" },
{ "2", "2" }, { "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous query but with a different nested view
// (vz2) that is missing the nested union found in vz.
rs = st
.executeQuery("select x1.z4 from (select z1, z4, z3 from vz2 union "
+ "select '1', 4, '3' from t1 ) x1 (z1, z4, z3), "
+ "(select distinct j from t2 union select j from t1) "
+ "x2 (c2) where x1.z4 = x2.c2");
expColNames = new String[] { "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous query but with a different nested view
// (vz4) that has double-nested unions in it. This is a
// test case for DERBY-1777.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select z1, z4, z3 from "
+ "vz4 union select '1', i+1, '3' from t1 ) x1 (z1, "
+ "z4, z3), (select distinct j from t2 union select j "
+ "from t1) x2 (c2) where x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2" }, { "4", "4" }, { "6", "6" },
{ "2", "2" }, { "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Push outer where predicate down into a UNION having a a
// Select child with more than one table in its FROM list.
// The predicate should be pushed to the correct table in
// the Select's FROM list. Prior to the fix for DERBY-1866
// the predicate was always being pushed to the *first*
// table, regardless of whether or not that was actually
// the correct table. Thus the predicate "t1.i = vz5.z4"
// was getting pushed to table T2 even though it doesn't
// apply there. The result was an ASSERT failure in sane
// mode and an IndexOutOfBounds exception in insane mode.
// NOTE: Use of NESTEDLOOP join strategy ensures the
// predicate will be pushed (otherwise optimizer might
// choose to do a hash join and we wouldn't be testing what
// we want to test).
rs = st
.executeQuery("select t1.i, vz5a.* from t1 left outer join vz5a "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on t1.i = vz5a.z4");
expColNames = new String[] { "I", "Z1", "Z2", "Z3", "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "i", "j", "j", "1" },
{ "2", "i", "j", "j", "2" }, { "3", "i", "j", "j", "3" },
{ "4", "i", "j", "j", "4" }, { "5", "i", "j", "j", "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same query as above, but without the optimizer
// override. In this case there was another error where
// optimizer state involving the "joinOrder" override (see
// the definition of vz5a) was not properly reset, which
// could lead to an infinite loop. This problem was fixed
// as part of DERBY-1866, as well.
rs = st
.executeQuery("select t1.i, vz5a.* from t1 left outer join vz5a on "
+ "t1.i = vz5a.z4");
expColNames = new String[] { "I", "Z1", "Z2", "Z3", "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "i", "j", "j", "1" },
{ "2", "i", "j", "j", "2" }, { "3", "i", "j", "j", "3" },
{ "4", "i", "j", "j", "4" }, { "5", "i", "j", "j", "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
// More tests for DERBY-1866 using more complicated views.
rs = st
.executeQuery("select t1.i, vz5b.* from t1 left outer join vz5b "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on t1.i = vz5b.z4");
expColNames = new String[] { "I", "Z1", "Z2", "Z3", "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "i", "j", "j", "1" },
{ "2", "i", "j", "j", "2" }, { "3", "i", "j", "j", "3" },
{ "4", "i", "j", "j", "4" }, { "5", "i", "j", "j", "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select t1.i, vz5c.* from t1 left outer join vz5c "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on t1.i = vz5c.z4");
expColNames = new String[] { "I", "Z1", "Z2", "Z3", "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "i", "j", "j", "1" },
{ "2", "i", "j", "j", "2" }, { "3", "i", "j", "j", "3" },
{ "4", "i", "j", "j", "4" }, { "5", "i", "j", "j", "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select t1.i, vz5d.* from t1 left outer join vz5d "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on t1.i = vz5d.z4");
expColNames = new String[] { "I", "Z1", "Z2", "Z3", "Z4" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "i", "j", "bokibob", "1" },
{ "1", "i", "j", "j", "1" }, { "2", "i", "j", "bokibob", "2" },
{ "2", "i", "j", "j", "2" }, { "3", "i", "j", "bokibob", "3" },
{ "3", "i", "j", "j", "3" }, { "4", "i", "j", "bokibob", "4" },
{ "4", "i", "j", "j", "4" }, { "5", "i", "j", "bokibob", "5" },
{ "5", "i", "j", "j", "5" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Queries with Select->Union->Select chains having
// differently- ordered result column lists with some
// non-column reference expressions. In all of these
// queries we specify LEFT join and force NESTEDLOOP in
// order to coerce the optimizer to push predicates to a
// specific subquery. We do this to ensure that we test
// predicate pushdown during compilation AND during
// execution. It's the execution-time testing that is
// particular important for verifying DERBY-1633
// functionality. Push predicate to union whose left child
// has a Select within a Select, both of which have the
// same result column ordering.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select z1, z4, z3 from vz "
+ "union select '1', i+1, '3' from t1 ) x1 (z1, z4, "
+ "z3) left join (select distinct i,j from (select "
+ "distinct i,j from t2) x3 union select i, j from t1 "
+ ") x2 (c1, c2) --DERBY-PROPERTIES "
+ "joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2" }, { "3", null }, { "4", "4" },
{ "5", null }, { "6", "6" }, { "1", null }, { "2", "2" },
{ "3", null }, { "4", "4" }, { "5", null } };
JDBC.assertFullResultSet(rs, expRS, true);
// Push predicate to union whose left child has a Select
// within a Select, where the result column lists for the
// two Selects are different ("i,j" vs "j,i").
rs = st
.executeQuery("select x1.z4, x2.c2 from (select z1, z4, z3 from vz "
+ "union select '1', i+1, '3' from t1 ) x1 (z1, z4, "
+ "z3) left join (select distinct i,j from (select "
+ "distinct j,i from t2) x3 union select i, j from t1 "
+ ") x2 (c1, c2) --DERBY-PROPERTIES "
+ "joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2" }, { "3", null }, { "4", "4" },
{ "5", null }, { "6", "6" }, { "1", null }, { "2", "2" },
{ "3", null }, { "4", "4" }, { "5", null } };
JDBC.assertFullResultSet(rs, expRS, true);
// Push predicate to union whose left child is itself a
// nested subquery (through use of the view "vz") and whose
// right child has an expression in its result column list.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select distinct i,j from "
+ "(select distinct j,i from t2) x3 union select i, j "
+ "from t1) x2 (c1, c2) left join (select z1, z4, z3 "
+ "from vz union select '1', i+1, '3' from t1 ) x1 "
+ "(z1, z4, z3) --DERBY-PROPERTIES "
+ "joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2" }, { "2", "2" }, { null, "-4" },
{ "4", "4" }, { "4", "4" }, { "6", "6" }, { null, "-8" },
{ null, "8" }, { null, "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous but with a different expression.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select distinct i,j from "
+ "(select distinct j,i from t2) x3 union select i, j "
+ "from t1) x2 (c1, c2) left join (select z1, z4, z3 "
+ "from vz union select '1', sin(i), '3' from t1 ) x1 "
+ "(z1, z4, z3) --DERBY-PROPERTIES "
+ "joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2.0", "2" }, { null, "-4" },
{ "4.0", "4" }, { null, "6" }, { null, "-8" }, { null, "8" },
{ null, "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous but expression replaced with a regular
// column reference.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select distinct i,j from "
+ "(select distinct j,i from t2) x3 union select i, j "
+ "from t1) x2 (c1, c2) left join (select z1, z4, z3 "
+ "from vz union select '1', i, '3' from t1 ) x1 (z1, "
+ "z4, z3) --DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n"
+ "on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2" }, { "2", "2" }, { null, "-4" },
{ "4", "4" }, { "4", "4" }, { null, "6" }, { null, "-8" },
{ null, "8" }, { null, "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Same as previous but with a different expression and a
// different subquery (this time using view "vz3").
rs = st
.executeQuery("select x1.z4, x2.c2 from (select distinct i,j from "
+ "(select distinct j,i from t2) x3 union select i, j "
+ "from t1) x2 (c1, c2) left join (select z1, z4, z3 "
+ "from vz3 union select '1', sin(i), '3' from t1 ) x1 "
+ "(z1, z4, z3) --DERBY-PROPERTIES "
+ "joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2.0", "2" }, { null, "-4" },
{ "4.0", "4" }, { null, "6" }, { null, "-8" }, { null, "8" },
{ null, "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Push predicate to chain of unions whose left-most child
// is itself a nested subquery (through use of the view
// "vz") and in which the other unions have expressions in
// their result column lists.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select distinct i,j from "
+ "(select distinct j,i from t2) x3 union select i, j "
+ "from t1) x2 (c1, c2) left join (select z1, z4, z3 "
+ "from vz union select '1', sin(i), '3' from t1 union "
+ "select '1', 14, '3' from t1 ) x1 (z1, z4, z3) "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2.0", "2" }, { null, "-4" },
{ "4.0", "4" }, { null, "6" }, { null, "-8" }, { null, "8" },
{ null, "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Push predicate to chain of unions whose right-most
// child is itself a nested subquery (through use of the
// view "vz") and in which the other unions have
// expressions in their result column lists.
rs = st
.executeQuery("select x1.z4, x2.c2 from (select distinct i,j from "
+ "(select distinct j,i from t2) x3 union select i, j "
+ "from t1) x2 (c1, c2) left join (select '1', sin(i), "
+ "'3' from t1 union select '1', 14, '3' from t1 union "
+ "select z1, z4, z3 from vz ) x1 (z1, z4, z3) "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on x1.z4 = x2.c2");
expColNames = new String[] { "Z4", "C2" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2.0", "2" }, { null, "-4" },
{ "4.0", "4" }, { null, "6" }, { null, "-8" }, { null, "8" },
{ null, "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Cleanup from this set of tests.
st.executeUpdate("drop view vz");
st.executeUpdate(" drop view vz2");
st.executeUpdate(" drop view vz3");
st.executeUpdate(" drop view vz4");
st.executeUpdate(" drop view vz5a");
st.executeUpdate(" drop view vz5d");
st.executeUpdate(" drop view vz5b");
st.executeUpdate(" drop view vz5c");
st.executeUpdate(" drop table tc");
// Now bump up the size of tables T3 and T4 to the point
// where use of indexes will cause optimizer to choose
// nested loop join (and push predicates) instead of hash
// join. The following insertions put roughly 50,000 rows
// into T3 and into T4. These numbers are somewhat
// arbitrary, but please note that reducing the number of
// rows in these two tables could cause the optimizer to
// choose to skip pushing and instead use a hash join for
// some of the test queries. That's not 'wrong' per se,
// but it's not what we want to test here...
getConnection().setAutoCommit(false);
st.executeUpdate(" insert into t3 (a) values 21, 22, 23, 24, 25, 26, "
+ "27, 28, 29, 30");
st.executeUpdate(" insert into t3 (a) values 31, 32, 33, 34, 35, 36, "
+ "37, 38, 39, 40");
st.executeUpdate(" insert into t3 (a) values 41, 42, 43, 44, 45, 46, "
+ "47, 48, 49, 50");
st.executeUpdate(" insert into t3 (a) values 51, 52, 53, 54, 55, 56, "
+ "57, 58, 59, 60");
st.executeUpdate(" insert into t3 (a) values 61, 62, 63, 64, 65, 66, "
+ "67, 68, 69, 70");
st.executeUpdate(" insert into t3 (a) values 71, 72, 73, 74, 75, 76, "
+ "77, 78, 79, 80");
st.executeUpdate(" insert into t3 (a) values 81, 82, 83, 84, 85, 86, "
+ "87, 88, 89, 90");
st.executeUpdate(" insert into t3 (a) values 91, 92, 93, 94, 95, 96, "
+ "97, 98, 99, 100");
assertUpdateCount(st, 80, " update t3 set b = 2 * a where a > 20");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 20)");
st
.executeUpdate(" insert into t4 (a, b) (select a,b from t3 where a > 20)");
st
.executeUpdate(" insert into t3 (a, b) (select a,b from t4 where a > 60)");
commit();
getConnection().setAutoCommit(true);
// See exactly how many rows we inserted, for sanity.
rs = st.executeQuery("select count(*) from t3");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "54579" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select count(*) from t4");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "48812" } };
JDBC.assertFullResultSet(rs, expRS, true);
// At this point we create the indexes. Note that we
// intentionally create the indexes AFTER loading the data,
// in order ensure that the index statistics are correct.
// We need the stats to be correct in order for the
// optimizer to choose the correct plan (i.e. to push the
// join predicates where possible).
st
.executeUpdate("CREATE INDEX \"APP\".\"T3_IX1\" ON \"APP\".\"T3\" (\"A\")");
st
.executeUpdate(" CREATE INDEX \"APP\".\"T3_IX2\" ON \"APP\".\"T3\" (\"B\")");
st
.executeUpdate(" CREATE INDEX \"APP\".\"T4_IX1\" ON \"APP\".\"T4\" (\"A\")");
st
.executeUpdate(" CREATE INDEX \"APP\".\"T4_IX2\" ON \"APP\".\"T4\" (\"B\")");
// Create the rest of objects used in this test.
st
.executeUpdate("CREATE TABLE \"APP\".\"T5\" (\"I\" INTEGER, \"J\" INTEGER)");
st.executeUpdate(" insert into t5 values (5, 10)");
st
.executeUpdate(" CREATE TABLE \"APP\".\"T6\" (\"P\" INTEGER, \"Q\" INTEGER)");
st.executeUpdate(" insert into t5 values (2, 4), (4, 8)");
st.executeUpdate(" CREATE TABLE \"APP\".\"XX1\" (\"II\" INTEGER NOT "
+ "NULL, \"JJ\" CHAR(10), \"MM\" INTEGER, \"OO\" "
+ "DOUBLE, \"KK\" BIGINT)");
st.executeUpdate(" CREATE TABLE \"APP\".\"YY1\" (\"II\" INTEGER NOT "
+ "NULL, \"JJ\" CHAR(10), \"AA\" INTEGER, \"OO\" "
+ "DOUBLE, \"KK\" BIGINT)");
st.executeUpdate(" ALTER TABLE \"APP\".\"YY1\" ADD CONSTRAINT "
+ "\"PK_YY1\" PRIMARY KEY (\"II\")");
st.executeUpdate(" ALTER TABLE \"APP\".\"XX1\" ADD CONSTRAINT "
+ "\"PK_XX1\" PRIMARY KEY (\"II\")");
st.executeUpdate(" create view xxunion as select all ii, jj, kk, mm "
+ "from xx1 union all select ii, jj, kk, mm from xx1 "
+ "union all select ii, jj, kk, mm from xx1 union all "
+ "select ii, jj, kk, mm from xx1 union all select ii, "
+ "jj, kk, mm from xx1 union all select ii, jj, kk, mm "
+ "from xx1 union all select ii, jj, kk, mm from xx1 "
+ "union all select ii, jj, kk, mm from xx1 union all "
+ "select ii, jj, kk, mm from xx1 union all select ii, "
+ "jj, kk, mm from xx1 union all select ii, jj, kk, mm "
+ "from xx1 union all select ii, jj, kk, mm from xx1 "
+ "union all select ii, jj, kk, mm from xx1 union all "
+ "select ii, jj, kk, mm from xx1 union all select ii, "
+ "jj, kk, mm from xx1 union all select ii, jj, kk, mm "
+ "from xx1 union all select ii, jj, kk, mm from xx1 "
+ "union all select ii, jj, kk, mm from xx1 union all "
+ "select ii, jj, kk, mm from xx1 union all select ii, "
+ "jj, kk, mm from xx1 union all select ii, jj, kk, mm "
+ "from xx1 union all select ii, jj, kk, mm from xx1 "
+ "union all select ii, jj, kk, mm from xx1 union all "
+ "select ii, jj, kk, mm from xx1 union all select ii, "
+ "jj, kk, mm from xx1");
st.executeUpdate(" create view yyunion as select all ii, jj, kk, aa "
+ "from yy1 union all select ii, jj, kk, aa from yy1 "
+ "union all select ii, jj, kk, aa from yy1 union all "
+ "select ii, jj, kk, aa from yy1 union all select ii, "
+ "jj, kk, aa from yy1 union all select ii, jj, kk, aa "
+ "from yy1 union all select ii, jj, kk, aa from yy1 "
+ "union all select ii, jj, kk, aa from yy1 union all "
+ "select ii, jj, kk, aa from yy1 union all select ii, "
+ "jj, kk, aa from yy1 union all select ii, jj, kk, aa "
+ "from yy1 union all select ii, jj, kk, aa from yy1 "
+ "union all select ii, jj, kk, aa from yy1 union all "
+ "select ii, jj, kk, aa from yy1 union all select ii, "
+ "jj, kk, aa from yy1 union all select ii, jj, kk, aa "
+ "from yy1 union all select ii, jj, kk, aa from yy1 "
+ "union all select ii, jj, kk, aa from yy1 union all "
+ "select ii, jj, kk, aa from yy1 union all select ii, "
+ "jj, kk, aa from yy1 union all select ii, jj, kk, aa "
+ "from yy1 union all select ii, jj, kk, aa from yy1 "
+ "union all select ii, jj, kk, aa from yy1 union all "
+ "select ii, jj, kk, aa from yy1 union all select ii, "
+ "jj, kk, aa from yy1");
// Run compression on the test tables to try to get a
// consistent set of row count stats for the tables
// (DERBY-1902, DERBY-3479).
cSt = prepareCall("call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T1', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T2', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T3', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T4', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T5', 1)");
assertUpdateCount(cSt, 0);
cSt = prepareCall(" call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP', 'T6', 1)");
assertUpdateCount(cSt, 0);
// And finally, run more extensive tests using the larger
// tables that have indexes. In these tests the optimizer
// should consider pushing predicates where possible. We
// can tell if a predicate has been "pushed" by looking at
// the query plan information for the tables in question:
// if the table has an index on a column that is used as
// part of the pushed predicate, then the optimizer will
// (for these tests) do an Index scan instead of a Table
// scan. If the table does not have such an index then the
// predicate will show up as a "qualifier" for a Table
// scan. In all of these tests T3 and T4 have appropriate
// indexes, so if we push a predicate to either of those
// tables we should see index scans. Neither T1 nor T2 has
// indexes, so if we push a predicate to either of those
// tables we should see a qualifier in the table scan
// information. Predicate push-down should occur for next
// two queries. Thus we we should see Index scans for T3
// and T4--and this should be the case regardless of the
// order of the FROM list.
rs = st.executeQuery("select * from V1, V2 where V1.j = V2.b");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "2", "2" }, { "2", "4", "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
rs = st.executeQuery("select * from V2, V1 where V1.j = V2.b");
expColNames = new String[] { "A", "B", "I", "J" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "2", "1", "2" }, { "4", "4", "2", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Changes for DERBY-805 don't affect non-join predicates
// (ex. "IN" or one- sided predicates), but make sure
// things still behave--i.e. these queries should still
// compile and execute without error. We don't expect to
// see any predicates pushed to T3 nor T4.
rs = st.executeQuery("select count(*) from V1, V2 where V1.i in (2,4)");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "404" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan on T3", p.usedTableScan("T3"));
assertTrue("Expected table scan on T4", p.usedTableScan("T4"));
rs = st.executeQuery("select count(*) from V1, V2 where V1.j > 0");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "505" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan on T3", p.usedTableScan("T3"));
assertTrue("Expected table scan on T4", p.usedTableScan("T4"));
// Combination of join predicate and non-join predicate:
// the join predicate should be pushed to V2 (T3 and T4),
// the non-join predicate should operate as usual.
rs = st
.executeQuery("select * from V1, V2 where V1.j = V2.b and V1.i in (2,4)");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "4", "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Make
// sure predicates are pushed even if the subquery is
// explicit (as opposed to a view). Should see index scans
// on T3 and T4.
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2) x1, (select * from t3 union select * from t4) "
+ "x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// In this case optimizer will consider pushing predicate
// to X1 but will choose not to because it's cheaper to
// push the predicate to T3. So should see regular table
// scans on T1 and T2.
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2) x1, t3 where x1.i = t3.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "4", "-8", "4", "4" },
{ "4", "8", "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected Table Scan ResultSet for T1", p.usedTableScan("T1"));
assertTrue("Expected Table Scan ResultSet for T2", p.usedTableScan("T2"));
// UNION
// ALL should behave just like normal UNION. I.e.
// predicates should still be pushed to T3 and T4.
rs = st
.executeQuery("select * from (select * from t1 union all select * "
+ "from t2) x1, (select * from t3 union select * from "
+ "t4) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "8", "4", "4" },
{ "4", "8", "4", "16" }, { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "-8", "4", "4" },
{ "4", "-8", "4", "16" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
rs = st
.executeQuery("select * from (select * from t1 union all select * "
+ "from t2) x1, (select * from t3 union all select * "
+ "from t4) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "8", "4", "4" },
{ "4", "8", "4", "16" }, { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "12" }, { "4", "-8", "4", "4" },
{ "4", "-8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Predicate with both sides referencing same UNION isn't a
// join predicate, so no pushing should happen. So should
// see regular table scans on all tables.
rs = st.executeQuery("select * from v1, v2 where V1.i = V1.j");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertEmpty(rs);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected Table Scan ResultSet for T1", p.usedTableScan("T1"));
assertTrue("Expected Table Scan ResultSet for T2", p.usedTableScan("T2"));
assertTrue("Expected Table Scan ResultSet for T3", p.usedTableScan("T3"));
assertTrue("Expected Table Scan ResultSet for T4", p.usedTableScan("T4"));
// Pushing predicates should still work even if user
// specifies explicit column names. In these two queries
// we push to X2 (T3 and T4).
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2) x1 (c, d), (select * from t3 union select * "
+ "from t4) x2 (e, f) where x1.c = x2.e");
expColNames = new String[] { "C", "D", "E", "F" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2) x1 (a, b), (select * from t3 union select * "
+ "from t4) x2 (i, j) where x1.a = x2.i");
expColNames = new String[] { "A", "B", "I", "J" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// In this query the optimizer will consider pushing, but
// will find that it's cheaper to do a hash join and thus
// will _not_ push. So we see hash join with table scan on T3.
rs = st
.executeQuery("select count(*) from (select * from t1 union select "
+ "* from t3) x1 (c, d), (select * from t2 union "
+ "select * from t4) x2 (e, f) where x1.c = x2.e");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "103" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
// DERBY-3819 - this test case consistently fails for 64 bit
// temporarily (until 3819 is fixed by changing the queries with optimizer directives)
if (!is64BitJVM()) {
assertTrue("Expected Table Scan ResultSet for T3", p.usedTableScan("T3"));
assertTrue("Expected Hash Join",p.usedHashJoin());
}
// If we
// have nested unions, the predicate should get pushed all
// the way down to the base table(s) for every level of
// nesting. Should see index scans for T3 and for _both_
// instances of T4.
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2 union select * from t1 union select * from t2 ) "
+ "x1, (select * from t3 union select * from t4 union "
+ "select * from t4 ) x2 where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Nested unions with non-join predicates should work as
// usual (no change with DERBY-805). So should see scalar
// qualifiers on scans for all instances of T1 and T2.
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2 union select * from t1 union select * from t2 ) "
+ "x1 where x1.i > 0");
expColNames = new String[] { "I", "J" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2" }, { "2", "-4" }, { "2", "4" },
{ "3", "6" }, { "4", "-8" }, { "4", "8" }, { "5", "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
// Expect to see scalar qualifiers with <= operator for four scans.
p.findString("Operator: <=", 4);
// In this
// case there are no qualifiers, but the restriction is
// enforced at the ProjectRestrictNode level. That hasn't
// changed with DERBY-805.
rs = st
.executeQuery("select count(*) from (select * from t1 union select "
+ "* from t2 union select * from t3 union select * "
+ "from t4 ) x1 (i, b) where x1.i > 0");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "108" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected Table Scan ResultSet for T1", p.usedTableScan("T1"));
assertTrue("Expected Table Scan ResultSet for T2", p.usedTableScan("T2"));
assertTrue("Expected Table Scan ResultSet for T3", p.usedTableScan("T3"));
assertTrue("Expected Table Scan ResultSet for T4", p.usedTableScan("T4"));
// Predicate pushdown should work with explicit use of
// "inner join" just like it does for implicit join. So
// should see index scans on T3 and T4.
rs = st
.executeQuery("select * from (select * from t1 union select * from "
+ "t2) x1 inner join (select * from t3 union select * "
+ "from t4) x2 on x1.j = x2.b");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "2", "2" }, { "2", "4", "4", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Can't push predicates into VALUES clauses. Predicate should
// end up at V2 (T3 and T4).
rs = st.executeQuery("select * from ( select i,j from t2 union values "
+ "(1,1),(2,2),(3,3),(4,4) union select i,j from t1 ) "
+ "x0 (i,j), v2 where x0.i = v2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "1", "1", "1" },
{ "1", "2", "1", "1" }, { "2", "-4", "2", "2" },
{ "2", "2", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "3", "3", "3" }, { "3", "3", "3", "12" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "16" },
{ "4", "4", "4", "4" }, { "4", "4", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "16" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Can't push predicates into VALUES clauses. Optimizer
// might consider pushing but shouldn't do it; in the end
// we'll do a hash join between X1 and T2.
rs = st
.executeQuery("select * from t2, (select * from t1 union values "
+ "(3,3), (4,4), (5,5), (6,6)) X1 (a,b) where X1.a = t2.i");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "2" },
{ "2", "-4", "2", "4" }, { "3", "6", "3", "3" },
{ "3", "6", "3", "6" }, { "4", "-8", "4", "4" },
{ "4", "-8", "4", "8" }, { "5", "10", "5", "5" },
{ "5", "10", "5", "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected Hash Join", p.usedHashJoin());
// Can't
// push predicates into VALUES clause. We'll try to push
// it to X1, but it will only make it to T4; it won't make
// it to T3 because the "other side" of the union with T3
// is a VALUES clause. So we'll see an index scan on T4
// and table scan on T3--but the predicate should still be
// applied to T3 at a higher level (through a
// ProjectRestrictNode), so we shouldn't get any extra rows.
rs = st.executeQuery("select * from (select i,j from t2 union values "
+ "(1,1),(2,2),(3,3),(4,4) union select i,j from t1 ) "
+ "x0 (i,j), (select a, b from t3 union values (4, 5), "
+ "(5, 6), (6, 7) union select a, b from t4 ) x1 (a,b) "
+ "where x0.i = x1.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "1", "1", "1" },
{ "1", "2", "1", "1" }, { "2", "-4", "2", "2" },
{ "2", "2", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "3", "3", "3" }, { "3", "3", "3", "12" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "-8", "4", "5" },
{ "4", "-8", "4", "16" }, { "4", "4", "4", "4" },
{ "4", "4", "4", "5" }, { "4", "4", "4", "16" },
{ "4", "8", "4", "4" }, { "4", "8", "4", "5" },
{ "4", "8", "4", "16" }, { "5", "10", "5", "6" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan on T3", p.usedTableScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Make sure optimizer is still considering predicates for
// other, non-UNION nodes. Here we should use the
// predicate to do a hash join between X0 and T5 (i.e. we
// will not push it down to X0 because a) there are VALUES
// clauses to which we can't push, and b) it's cheaper to
// do the hash join).
rs = st
.executeQuery("select * from t5, (values (2,2), (4,4) union values "
+ "(1,1),(2,2),(3,3),(4,4) union select i,j from t1 ) "
+ "x0 (i,j) where x0.i = t5.i");
expColNames = new String[] { "I", "J", "I", "J" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "4", "2", "2" },
{ "2", "4", "2", "4" }, { "4", "8", "4", "4" },
{ "4", "8", "4", "8" }, { "5", "10", "5", "10" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected hash join", p.usedHashJoin());
// When we
// have very deeply nested union queries, make sure
// predicate push- down logic still works (esp. the scoping
// logic). These queries won't return any results, but the
// predicate should get pushed to EVERY instance of the
// base table all the way down. We're just checking to
// make sure these compile and execute without error. The
// query plan for these two queries alone would be several
// thousand lines so we don't print them out. We have
// other (smaller) tests to check that predicates are
// correctly pushed through nested unions.
rs = st
.executeQuery("select distinct xx0.kk, xx0.ii, xx0.jj from xxunion "
+ "xx0, yyunion yy0 where xx0.mm = yy0.ii");
expColNames = new String[] { "KK", "II", "JJ" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertEmpty(rs);
rs = st.executeQuery("values (1)");
rs.next();
rsmd = rs.getMetaData();
pSt = prepareStatement("select distinct "
+ "xx0.kk, xx0.ii, xx0.jj from " + "xxunion xx0, "
+ "yyunion yy0 " + "where xx0.mm = yy0.ii and yy0.aa in (?) "
+ "for fetch only");
for (int i = 1; i <= rsmd.getColumnCount(); i++)
pSt.setObject(i, rs.getObject(i));
rs = pSt.executeQuery();
expColNames = new String[] { "KK", "II", "JJ" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
// Predicate push-down should only affect the UNIONs
// referenced; other UNIONs shouldn't interfere or be
// affected. Should see table scans for T1 and T2 then an
// index scan for the first instance of T3 and a table scan
// for second instance of T3; likewise for two instances of T4.
rs = st
.executeQuery("select count(*) from (select * from t1 union select "
+ "* from t2) x1, (select * from t3 union select * "
+ "from t4) x2, (select * from t4 union select * from "
+ "t3) x3 where x1.i = x3.a");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "909" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan on T1", p.usedTableScan("T1"));
assertTrue("Expected table scan on T2", p.usedTableScan("T2"));
assertTrue("Expected table scan on T3", p.usedTableScan("T3"));
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected table scan on T4", p.usedTableScan("T4"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Here we
// should see index scans for both instances of T3 and for
// both instances of T4.
rs = st
.executeQuery("select count(*) from (select * from t1 union select "
+ "* from t2) x1, (select * from t3 union select * "
+ "from t4) x2, (select * from t4 union select * from "
+ "t3) x3 where x1.i = x3.a and x3.b = x2.b");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "9" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Predicates pushed from outer queries shouldn't
// interfere with inner predicates for subqueries. Mostly
// checking for correct results here.
rs = st
.executeQuery("select * from (select i, b j from t1, t4 where i = "
+ "j union select * from t2) x1, t3 where x1.j = t3.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "2", "2" },
{ "3", "6", "6", "24" }, { "5", "10", "10", "40" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Inner predicate should be handled as normal, outer
// predicate should either get pushed to V2 (T3 and T4) or
// else used for a hash join between x1 and v2.
rs = st
.executeQuery("select * from (select i, b j from t1, t4 where i = "
+ "j union select * from t2) x1, v2 where x1.j = v2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "2", "2" },
{ "3", "6", "6", "24" }, { "5", "10", "10", "40" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
// DERBY-3819 - this test case consistently fails for 64 bit
// temporarily (until 3819 is fixed by changing the queries with optimizer directives)
if (!is64BitJVM()) {
assertTrue("Expected hash join", p.usedHashJoin());
}
// Outer
// predicate should either get pushed to V2 (T3 and T4) or
// else used for a hash join; similarly, inner predicate
// should either get pushed to T3 or else used for hash
// join between T1 and T3.
rs = st
.executeQuery("select * from (select i, j from t1, t3 where i = a "
+ "union select * from t2) x1, v2 where x1.i = v2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "1", "1" },
{ "2", "-4", "2", "2" }, { "2", "4", "2", "2" },
{ "3", "6", "3", "3" }, { "3", "6", "3", "12" },
{ "4", "-8", "4", "4" }, { "4", "8", "4", "4" },
{ "4", "-8", "4", "16" }, { "4", "8", "4", "16" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected hash join", p.usedHashJoin());
// Inner predicates treated as restrictions, outer
// predicate either pushed to X2 (T2 and T1) or used for
// hash join between X2 and X1.
rs = st
.executeQuery("select * from (select i, b j from t1, t4 where i = "
+ "j union select * from t2) x1, (select i, b j from "
+ "t2, t3 where i = j union select * from t1) x2 where "
+ "x1.j = x2.i");
expColNames = new String[] { "I", "J", "I", "J" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "2", "2", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
// DERBY-3819 - this test case consistently fails for 64 bit
// temporarily (until 3819 is fixed by changing the queries with optimizer directives)
if (!is64BitJVM()) {
assertTrue("Expected hash join", p.usedHashJoin());
}
// Following queries deal with nested subqueries, which
// deserve extra testing because "best paths" for outer
// queries might not agree with "best paths" for inner
// queries, so we need to make sure the correct paths
// (based on predicates that are or are not pushed) are
// ultimately generated. Predicate should get pushed to V2
// (T3 and T4).
rs = st
.executeQuery("select count(*) from (select i,a,j,b from V1, V2 "
+ "where V1.j = V2.b ) X3");
expColNames = new String[] { "1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Multiple subqueries but NO UNIONs. All predicates are
// used for joins at their current level (no pushing).
rs = st.executeQuery("select t2.i,p from (select distinct i,p from "
+ "(select distinct i,a from t1, t3 where t1.j = t3.b) "
+ "X1, t6 where X1.a = t6.p) X2, t2 where t2.i = X2.i");
expColNames = new String[] { "I", "P" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected hash join", p.usedHashJoin());
assertTrue("Expected table scan on T1", p.usedTableScan("T1"));
assertTrue("Expected index row to base row for T3", p.usedIndexRowToBaseRow("T3"));
// Multiple, non-flattenable subqueries, but NO UNIONs. Shouldn't push
// anything.
rs = st
.executeQuery("select x1.j, x2.b from (select distinct i,j from "
+ "t1) x1, (select distinct a,b from t3) x2 where x1.i "
+ "= x2.a order by x1.j, x2.b");
expColNames = new String[] { "J", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "1" }, { "4", "2" }, { "6", "3" },
{ "8", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected distinct scan on T1", p.usedDistinctScan("T1"));
assertTrue("Expected distinct scan T3", p.usedDistinctScan("T3"));
rs = st
.executeQuery("select x1.j, x2.b from (select distinct i,j from "
+ "t1) x1, (select distinct a,b from t3) x2, (select "
+ "distinct i,j from t2) x3, (select distinct a,b from "
+ "t4) x4 where x1.i = x2.a and x3.i = x4.a order by x1.j, x2.b");
expColNames = new String[] { "J", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "1" }, { "2", "1" }, { "4", "2" },
{ "4", "2" }, { "6", "3" }, { "6", "3" }, { "8", "4" },
{ "8", "4" }};
JDBC.assertFullResultSet(rs, expRS, true);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected distinct scan on T1", p.usedDistinctScan("T1"));
assertTrue("Expected distinct scan T2", p.usedDistinctScan("T2"));
assertTrue("Expected distinct scan on T3", p.usedDistinctScan("T3"));
assertTrue("Expected distinct scan T4", p.usedDistinctScan("T4"));
// Multiple subqueries that are UNIONs. Outer-most
// predicate X0.b = X2.j can be pushed to union X0 but NOT
// to subquery X2. Inner predicate T6.p = X1.i is eligible
// for being pushed into union X1. In this case outer
// predicate is pushed to X0 (so we'll see index scans on
// T3 and T4) but inner predicate is used for a hash join
// between X1 and T6.
rs = st
.executeQuery("select X0.a, X2.i from (select a,b from t4 union "
+ "select a,b from t3) X0, (select i,j from (select "
+ "i,j from t1 union select i,j from t2) X1, T6 where "
+ "T6.p = X1.i) X2 where X0.b = X2.j ");
expColNames = new String[] { "A", "I" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected hash join", p.usedHashJoin());
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Same as
// above but without the inner predicate (so no hash on T6).
rs = st
.executeQuery("select X0.a, X2.i from (select a,b from t4 union "
+ "select a,b from t3) X0, (select i,j from (select "
+ "i,j from t1 union select i,j from t2) X1, T6 ) X2 "
+ "where X0.b = X2.j ");
expColNames = new String[] { "A", "I" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertEmpty(rs);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Same as above, but without the outer predicate. Should
// see table scan on T3 and T4 (because nothing is pushed).
rs = st
.executeQuery("select X0.a, X2.i from (select a,b from t4 union "
+ "select a,b from t3) X0, (select i,j from (select "
+ "i,j from t1 union select i,j from t2) X1, T6 where "
+ "T6.p = X1.i) X2 ");
expColNames = new String[] { "A", "I" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected table scan on T3", p.usedTableScan("T3"));
assertTrue("Expected table scan on T4", p.usedTableScan("T4"));
// Additional tests with VALUES clauses. Mostly just
// checking to make sure these queries compile and execute,
// and to ensure that all predicates are enforced even if
// they can't be pushed all the way down into a UNION. So
// we shouldn't get back any extra rows here. NOTE: Row
// order is not important in these queries, just so long as
// the correct rows are returned.
cSt = prepareCall("call SYSCS_UTIL.SYSCS_SET_RUNTIMESTATISTICS(0)");
assertUpdateCount(cSt, 0);
rs = st.executeQuery(" select * from (select * from t1 union select * "
+ "from t2) x1, (values (2, 4), (3, 6), (4, 8)) x2 (a, "
+ "b) where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "-4", "2", "4" },
{ "2", "4", "2", "4" }, { "3", "6", "3", "6" },
{ "4", "-8", "4", "8" }, { "4", "8", "4", "8" } };
JDBC.assertFullResultSet(rs, expRS, true);
// ---------------------------------------------
rs = st.executeQuery("select * from"
+ "(select * from t1 union (values (1, -1), (2, "
+ "-2), (5, -5))) x1 (i, j),"
+ "(values (2, 4), (3, 6), (4, 8)) x2 (a, b)"
+ "where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "-2", "2", "4" },
{ "2", "4", "2", "4" }, { "3", "6", "3", "6" },
{ "4", "8", "4", "8" }};
JDBC.assertFullResultSet(rs, expRS);
rs = st
.executeQuery(" select * from (select * from t1 union all (values "
+ "(1, -1), (2, -2), (5, -5))) x1 (i, j), (values (2, "
+ "4), (3, 6), (4, 8)) x2 (a, b) where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "4", "2", "4" },
{ "3", "6", "3", "6" }, { "4", "8", "4", "8" },
{ "2", "-2", "2", "4" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from (select * from t1 union (values (1, "
+ "-1), (2, -2), (5, -5))) x1 (i, j), (values (2, 4), "
+ "(3, 6), (4, 8)) x2 (a, b) where x1.i = x2.a and x2.b = x1.j");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "4", "2", "4" },
{ "3", "6", "3", "6" }, { "4", "8", "4", "8" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from (values (2, -4), (3, -6), (4, -8) "
+ "union values (1, -1), (2, -2), (5, -5) ) x1 (i, j), "
+ "(values (2, 4), (3, 6), (4, 8)) x2 (a, b) where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "-4", "2", "4" },
{ "2", "-2", "2", "4" }, { "3", "-6", "3", "6" },
{ "4", "-8", "4", "8" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from (values (2, -4), (3, -6), (4, -8) "
+ "union values (1, -1), (2, -2), (5, -5) ) x1 (i, j), "
+ "(values (2, 4), (3, 6), (4, 8)) x2 (a, b) where "
+ "x1.i = x2.a and x2.b = x1.j");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
rs = st
.executeQuery(" select * from (values (1, -1), (2, -2), (5, -5) "
+ "union select * from t1) x1 (i,j), (values (2, 4), "
+ "(3, 6), (4, 8)) x2 (a, b) where x1.i = x2.a");
expColNames = new String[] { "I", "J", "A", "B" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "2", "-2", "2", "4" },
{ "2", "4", "2", "4" }, { "3", "6", "3", "6" },
{ "4", "8", "4", "8" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Clean up DERBY-805 objects.
st.executeUpdate("drop view v1");
st.executeUpdate(" drop view v2");
st.executeUpdate(" drop table t1");
st.executeUpdate(" drop table t2");
st.executeUpdate(" drop table t3");
st.executeUpdate(" drop table t4");
st.executeUpdate(" drop table t5");
st.executeUpdate(" drop table t6");
st.executeUpdate(" drop view xxunion");
st.executeUpdate(" drop view yyunion");
st.executeUpdate(" drop table xx1");
st.executeUpdate(" drop table yy1");
// DERBY-1633: Nested UNIONs of views with different
// column orderings leads to incorrectly scoped predicates.
// We have a lot of different tables and views here to try
// to cover several different situations. Note that all of
// the views use DISTINCT because we don't want the views
// to be flattened and Derby doesn't flatten select queries
// with DISTINCT in them.
st.executeUpdate("CREATE TABLE \"APP\".\"T1\" (\"I\" INTEGER, \"D\" "
+ "DOUBLE, \"C\" CHAR(10))");
st.executeUpdate(" CREATE TABLE \"APP\".\"T2\" (\"I2\" INTEGER, "
+ "\"D2\" DOUBLE, \"C2\" CHAR(10))");
st.executeUpdate(" CREATE TABLE \"APP\".\"T3\" (\"I3\" INTEGER, "
+ "\"D3\" DOUBLE, \"C3\" CHAR(10))");
st.executeUpdate(" insert into t1 values (1, -1, '1'), (2, -2, '2')");
st.executeUpdate(" insert into t2 values (2, -2, '2'), (4, -4, '4'), "
+ "(8, -8, '8')");
st.executeUpdate(" insert into t3 values (3, -3, '3'), (6, -6, '6'), "
+ "(9, -9, '9')");
st.executeUpdate(" CREATE TABLE \"APP\".\"T4\" (\"C4\" CHAR(10))");
st.executeUpdate(" insert into t4 values '1', '2', '3', '4', '5', "
+ "'6', '7', '8', '9'");
st
.executeUpdate(" insert into t4 select rtrim(c4) || rtrim(c4) from t4");
st.executeUpdate(" CREATE TABLE \"APP\".\"T5\" (\"I5\" INTEGER, "
+ "\"D5\" DOUBLE, \"C5\" CHAR(10))");
st.executeUpdate(" CREATE TABLE \"APP\".\"T6\" (\"I6\" INTEGER, "
+ "\"D6\" DOUBLE, \"C6\" CHAR(10))");
st.executeUpdate(" insert into t5 values (100, 100.0, '100'), (200, "
+ "200.0, '200'), (300, 300.0, '300')");
st.executeUpdate(" insert into t6 values (400, 400.0, '400'), (200, "
+ "200.0, '200'), (300, 300.0, '300')");
st.executeUpdate(" create view v_keycol_at_pos_3 as select distinct i "
+ "col1, d col2, c col3 from t1");
st.executeUpdate(" create view v1_keycol_at_pos_2 as select distinct "
+ "i2 col1, c2 col3, d2 col2 from t2");
st.executeUpdate(" create view v2_keycol_at_pos_2 as select distinct "
+ "i3 col1, c3 col3, d3 col2 from t3");
st.executeUpdate(" create view v1_intersect as select distinct i5 "
+ "col1, c5 col3, d5 col2 from t5");
st.executeUpdate(" create view v2_intersect as select distinct i6 "
+ "col1, c6 col3, d6 col2 from t6");
st.executeUpdate(" create view v1_values as select distinct vals1 "
+ "col1, vals2 col2, vals3 col3 from (values (321, "
+ "321.0, '321'), (432, 432.0, '432'), (654, 654.0, "
+ "'654') ) VT(vals1, vals2, vals3)");
st.executeUpdate(" create view v_union as select distinct i col1, d "
+ "col2, c col3 from t1 union select distinct i3 col1, "
+ "d3 col2, c3 col3 from t3");
// Chain of UNIONs with left-most child as a view with a
// an RCL that is ordered differently than that of the
// UNIONs above it. The right child of the top-level node
// is a view that is a simple select from a table.
st
.executeUpdate("create view topview as (select distinct 'other:' "
+ "col0, vpos3.col3, vpos3.col1 from v_keycol_at_pos_3 "
+ "vpos3 union select distinct 't2stuff:' col0, "
+ "vpos2_1.col3, vpos2_1.col1 from v1_keycol_at_pos_2 "
+ "vpos2_1 union select distinct 't3stuff:' col0, "
+ "vpos2_2.col3, vpos2_2.col1 from v2_keycol_at_pos_2 vpos2_2 )");
// Chain of UNIONs with left-most child as a view with a
// an RCL that is ordered differently than that of the
// UNIONs above it. The right child of the top-level node
// is a view that is a select from yet another UNION node.
st.executeUpdate("create view topview2 as (select distinct 'other:' "
+ "col0, vpos3.col3, vpos3.col1 from v_keycol_at_pos_3 "
+ "vpos3 union select distinct 't2stuff:' col0, "
+ "vpos2_1.col3, vpos2_1.col1 from v1_keycol_at_pos_2 "
+ "vpos2_1 union select distinct 't3stuff:' col0, "
+ "vpos2_2.col3, vpos2_2.col1 from v2_keycol_at_pos_2 "
+ "vpos2_2 union select distinct 'morestuff:' col0, "
+ "vu.col3, vu.col1 from v_union vu )");
// Chain of UNIONs with left-most child as a view with a
// an RCL that is ordered differently than that of the
// UNIONs above it. The left-most child of the last UNION
// in the chain is an INTERSECT node to which predicates
// cannot (currently) be pushed. In this case the
// intersect returns an empty result set.
st.executeUpdate("create view topview3 (col0, col3, col1) as (select "
+ "distinct 'other:' col0, vpos3.col3, vpos3.col1 from "
+ "v_keycol_at_pos_3 vpos3 intersect select distinct "
+ "'t2stuff:' col0, vpos2_1.col3, vpos2_1.col1 from "
+ "v1_keycol_at_pos_2 vpos2_1 union select distinct "
+ "'t3stuff:' col0, vpos2_2.col3, vpos2_2.col1 from "
+ "v2_keycol_at_pos_2 vpos2_2 union select distinct "
+ "'morestuff:' col0, vu.col3, vu.col1 from v_union vu )");
// Chain of UNIONs with left-most child as a view with a
// an RCL that is ordered differently than that of the
// UNIONs above it. The left-most child of the last UNION
// in the chain is an INTERSECT node to which predicates
// cannot (currently) be pushed. In this case the
// intersect returns a couple of rows.
st.executeUpdate("create view topview4 (col0, col3, col1) as (select "
+ "distinct 'intersect:' col0, vi1.col3, vi1.col1 from "
+ "v1_intersect vi1 intersect select distinct "
+ "'intersect:' col0, vi2.col3, vi2.col1 from "
+ "v2_intersect vi2 union select distinct 't3stuff:' "
+ "col0, vpos2_2.col3, vpos2_2.col1 from "
+ "v2_keycol_at_pos_2 vpos2_2 union select distinct "
+ "'morestuff:' col0, vu.col3, vu.col1 from v_union vu )");
// Chain of UNIONs with left-most child as a view with a
// an RCL that is ordered differently than that of the
// UNIONs above it. The left-most child of the last UNION
// in the chain is a view that is a selet from a VALUES
// list (i.e. no base table).
st.executeUpdate("create view topview5 (col0, col3, col1) as (select "
+ "distinct 'values:' col0, vv1.col3, vv1.col1 from "
+ "v1_values vv1 union select distinct 'intersect:' "
+ "col0, vi2.col3, vi2.col1 from v2_intersect vi2 "
+ "union select distinct 't3stuff:' col0, "
+ "vpos2_2.col3, vpos2_2.col1 from v2_keycol_at_pos_2 "
+ "vpos2_2 union select distinct 'morestuff:' col0, "
+ "vu.col3, vu.col1 from v_union vu )");
// All of the following queries failed at some point while
// finalizing the fix for DERBY-1633; some failed with
// error 42818, others failed with execution-time NPEs
// caused by incorrect (esp. double) remapping. The point
// here is to see how the top-level predicates are pushed
// through the nested unions to the bottom-most children.
// Use of LEFT JOINs with NESTEDLOOP effectively allows us
// to force the join order and thus to ensure the
// predicates are pushed to the desired top-level at
// execution time. All such queries are run once with
// NESTEDLOOP and once without, to make sure things work in
// both cases.
rs = st
.executeQuery("select * from t4, topview where t4.c4 = topview.col3");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "4", "t2stuff:", "4", "4" }, { "8", "t2stuff:", "8", "8" },
{ "3", "t3stuff:", "3", "3" }, { "6", "t3stuff:", "6", "6" },
{ "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from t4, topview where topview.col3 = t4.c4");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "4", "t2stuff:", "4", "4" }, { "8", "t2stuff:", "8", "8" },
{ "3", "t3stuff:", "3", "3" }, { "6", "t3stuff:", "6", "6" },
{ "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1, topview where "
+ "topview.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from t4, topview2 where t4.c4 = topview2.col3");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "morestuff:", "1", "1" },
{ "2", "morestuff:", "2", "2" },
{ "3", "morestuff:", "3", "3" },
{ "6", "morestuff:", "6", "6" },
{ "9", "morestuff:", "9", "9" }, { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "4", "t2stuff:", "4", "4" }, { "8", "t2stuff:", "8", "8" },
{ "3", "t3stuff:", "3", "3" }, { "6", "t3stuff:", "6", "6" },
{ "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview2 x1, topview where "
+ "topview.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "morestuff:", "1", "1", "other:", "1", "1" },
{ "morestuff:", "2", "2", "other:", "2", "2" },
{ "morestuff:", "2", "2", "t2stuff:", "2", "2" },
{ "morestuff:", "3", "3", "t3stuff:", "3", "3" },
{ "morestuff:", "6", "6", "t3stuff:", "6", "6" },
{ "morestuff:", "9", "9", "t3stuff:", "9", "9" },
{ "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from t4 left join topview on t4.c4 = topview.col3");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "3", "t3stuff:", "3", "3" }, { "4", "t2stuff:", "4", "4" },
{ "5", null, null, null }, { "6", "t3stuff:", "6", "6" },
{ "7", null, null, null }, { "8", "t2stuff:", "8", "8" },
{ "9", "t3stuff:", "9", "9" }, { "11", null, null, null },
{ "22", null, null, null }, { "33", null, null, null },
{ "44", null, null, null }, { "55", null, null, null },
{ "66", null, null, null }, { "77", null, null, null },
{ "88", null, null, null }, { "99", null, null, null } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from t4 left join topview "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on t4.c4 "
+ "= topview.col3");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "3", "t3stuff:", "3", "3" }, { "4", "t2stuff:", "4", "4" },
{ "5", null, null, null }, { "6", "t3stuff:", "6", "6" },
{ "7", null, null, null }, { "8", "t2stuff:", "8", "8" },
{ "9", "t3stuff:", "9", "9" }, { "11", null, null, null },
{ "22", null, null, null }, { "33", null, null, null },
{ "44", null, null, null }, { "55", null, null, null },
{ "66", null, null, null }, { "77", null, null, null },
{ "88", null, null, null }, { "99", null, null, null } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st
.executeQuery(" select * from t4 left join topview on topview.col3 = t4.c4");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "3", "t3stuff:", "3", "3" }, { "4", "t2stuff:", "4", "4" },
{ "5", null, null, null }, { "6", "t3stuff:", "6", "6" },
{ "7", null, null, null }, { "8", "t2stuff:", "8", "8" },
{ "9", "t3stuff:", "9", "9" }, { "11", null, null, null },
{ "22", null, null, null }, { "33", null, null, null },
{ "44", null, null, null }, { "55", null, null, null },
{ "66", null, null, null }, { "77", null, null, null },
{ "88", null, null, null }, { "99", null, null, null } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from t4 left join topview "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview.col3 = t4.c4");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "other:", "1", "1" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "3", "t3stuff:", "3", "3" }, { "4", "t2stuff:", "4", "4" },
{ "5", null, null, null }, { "6", "t3stuff:", "6", "6" },
{ "7", null, null, null }, { "8", "t2stuff:", "8", "8" },
{ "9", "t3stuff:", "9", "9" }, { "11", null, null, null },
{ "22", null, null, null }, { "33", null, null, null },
{ "44", null, null, null }, { "55", null, null, null },
{ "66", null, null, null }, { "77", null, null, null },
{ "88", null, null, null }, { "99", null, null, null } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview on "
+ "topview.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from t4 left join topview2 on t4.c4 = "
+ "topview2.col3");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "morestuff:", "1", "1" },
{ "1", "other:", "1", "1" }, { "2", "morestuff:", "2", "2" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "3", "morestuff:", "3", "3" }, { "3", "t3stuff:", "3", "3" },
{ "4", "t2stuff:", "4", "4" }, { "5", null, null, null },
{ "6", "morestuff:", "6", "6" }, { "6", "t3stuff:", "6", "6" },
{ "7", null, null, null }, { "8", "t2stuff:", "8", "8" },
{ "9", "morestuff:", "9", "9" }, { "9", "t3stuff:", "9", "9" },
{ "11", null, null, null }, { "22", null, null, null },
{ "33", null, null, null }, { "44", null, null, null },
{ "55", null, null, null }, { "66", null, null, null },
{ "77", null, null, null }, { "88", null, null, null },
{ "99", null, null, null } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from t4 left join topview2 "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on t4.c4 "
+ "= topview2.col3");
expColNames = new String[] { "C4", "COL0", "COL3", "COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "morestuff:", "1", "1" },
{ "1", "other:", "1", "1" }, { "2", "morestuff:", "2", "2" },
{ "2", "other:", "2", "2" }, { "2", "t2stuff:", "2", "2" },
{ "3", "morestuff:", "3", "3" }, { "3", "t3stuff:", "3", "3" },
{ "4", "t2stuff:", "4", "4" }, { "5", null, null, null },
{ "6", "morestuff:", "6", "6" }, { "6", "t3stuff:", "6", "6" },
{ "7", null, null, null }, { "8", "t2stuff:", "8", "8" },
{ "9", "morestuff:", "9", "9" }, { "9", "t3stuff:", "9", "9" },
{ "11", null, null, null }, { "22", null, null, null },
{ "33", null, null, null }, { "44", null, null, null },
{ "55", null, null, null }, { "66", null, null, null },
{ "77", null, null, null }, { "88", null, null, null },
{ "99", null, null, null } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview2 x1 left join topview on "
+ "topview.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "morestuff:", "1", "1", "other:", "1", "1" },
{ "morestuff:", "2", "2", "other:", "2", "2" },
{ "morestuff:", "2", "2", "t2stuff:", "2", "2" },
{ "morestuff:", "3", "3", "t3stuff:", "3", "3" },
{ "morestuff:", "6", "6", "t3stuff:", "6", "6" },
{ "morestuff:", "9", "9", "t3stuff:", "9", "9" },
{ "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview2 x1 left join topview "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "morestuff:", "1", "1", "other:", "1", "1" },
{ "morestuff:", "2", "2", "other:", "2", "2" },
{ "morestuff:", "2", "2", "t2stuff:", "2", "2" },
{ "morestuff:", "3", "3", "t3stuff:", "3", "3" },
{ "morestuff:", "6", "6", "t3stuff:", "6", "6" },
{ "morestuff:", "9", "9", "t3stuff:", "9", "9" },
{ "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview2 on "
+ "topview2.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview2 "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview2.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "1", "1", "other:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "other:", "2", "2", "other:", "2", "2" },
{ "other:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "other:", "2", "2" },
{ "t2stuff:", "2", "2", "t2stuff:", "2", "2" },
{ "t2stuff:", "4", "4", "t2stuff:", "4", "4" },
{ "t2stuff:", "8", "8", "t2stuff:", "8", "8" },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview3 on "
+ "topview3.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "4", "4", null, null, null },
{ "t2stuff:", "8", "8", null, null, null },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview3 "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview3.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "4", "4", null, null, null },
{ "t2stuff:", "8", "8", null, null, null },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview4 on "
+ "topview4.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "4", "4", null, null, null },
{ "t2stuff:", "8", "8", null, null, null },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview4 "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview4.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "4", "4", null, null, null },
{ "t2stuff:", "8", "8", null, null, null },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview5 on "
+ "topview5.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "4", "4", null, null, null },
{ "t2stuff:", "8", "8", null, null, null },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(" select * from topview x1 left join topview5 "
+ "--DERBY-PROPERTIES joinStrategy=NESTEDLOOP \n on "
+ "topview5.col3 = x1.col3");
expColNames = new String[] { "COL0", "COL3", "COL1", "COL0", "COL3",
"COL1" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] {
{ "other:", "1", "1", "morestuff:", "1", "1" },
{ "other:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "2", "2", "morestuff:", "2", "2" },
{ "t2stuff:", "4", "4", null, null, null },
{ "t2stuff:", "8", "8", null, null, null },
{ "t3stuff:", "3", "3", "morestuff:", "3", "3" },
{ "t3stuff:", "3", "3", "t3stuff:", "3", "3" },
{ "t3stuff:", "6", "6", "morestuff:", "6", "6" },
{ "t3stuff:", "6", "6", "t3stuff:", "6", "6" },
{ "t3stuff:", "9", "9", "morestuff:", "9", "9" },
{ "t3stuff:", "9", "9", "t3stuff:", "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
// DERBY-1681: In order to reproduce the issue described
// in DERBY-1681 we have to have a minimum amount of data
// in the tables if we have too little, then somehow that
// affects the plan and we won't see the incorrect results.
st.executeUpdate("insert into t1 select * from t2");
st.executeUpdate(" insert into t2 select * from t3");
st.executeUpdate(" insert into t3 select * from t1");
st.executeUpdate(" insert into t1 select * from t2");
st.executeUpdate(" insert into t2 select * from t3");
st.executeUpdate(" insert into t3 select * from t1");
st.executeUpdate(" insert into t1 select * from t2");
st.executeUpdate(" insert into t2 select * from t3");
st.executeUpdate(" insert into t3 select * from t1");
st.executeUpdate(" insert into t1 select * from t2");
st.executeUpdate(" insert into t2 select * from t3");
st.executeUpdate(" insert into t3 select * from t1");
// Now can just run one of the queries from DERBY-1633 to
// test the fix. Before DERBY-1681 this query would return
// 84 rows and it was clear that the predicate wasn't being
// enforced after the fix, we should only see 42 rows and
// for every row the first and second column should be equal.
rs = st
.executeQuery("select topview4.col3, x1.col3 from topview x1 left "
+ "join topview4 on topview4.col3 = x1.col3");
expColNames = new String[] { "COL3", "COL3" };
JDBC.assertColumnNames(rs, expColNames);
expRS = new String[][] { { "1", "1" }, { "1", "1" }, { "2", "2" },
{ "2", "2" }, { "3", "3" }, { "3", "3" }, { "4", "4" },
{ "4", "4" }, { "6", "6" }, { "6", "6" }, { "8", "8" },
{ "8", "8" }, { "9", "9" }, { "9", "9" }, { "1", "1" },
{ "1", "1" }, { "2", "2" }, { "2", "2" }, { "3", "3" },
{ "3", "3" }, { "4", "4" }, { "4", "4" }, { "6", "6" },
{ "6", "6" }, { "8", "8" }, { "8", "8" }, { "9", "9" },
{ "9", "9" }, { "1", "1" }, { "1", "1" }, { "2", "2" },
{ "2", "2" }, { "3", "3" }, { "3", "3" }, { "4", "4" },
{ "4", "4" }, { "6", "6" }, { "6", "6" }, { "8", "8" },
{ "8", "8" }, { "9", "9" }, { "9", "9" } };
JDBC.assertFullResultSet(rs, expRS, true);
// Clean-up from DERBY-1633 and DERBY-1681.
st.executeUpdate("drop view topview");
st.executeUpdate(" drop view topview2");
st.executeUpdate(" drop view topview3");
st.executeUpdate(" drop view topview4");
st.executeUpdate(" drop view topview5");
st.executeUpdate(" drop view v_keycol_at_pos_3");
st.executeUpdate(" drop view v1_keycol_at_pos_2");
st.executeUpdate(" drop view v2_keycol_at_pos_2");
st.executeUpdate(" drop view v1_intersect");
st.executeUpdate(" drop view v2_intersect");
st.executeUpdate(" drop view v1_values");
st.executeUpdate(" drop view v_union");
st.executeUpdate(" drop table t1");
st.executeUpdate(" drop table t2");
st.executeUpdate(" drop table t3");
st.executeUpdate(" drop table t4");
st.executeUpdate(" drop table t5");
st.executeUpdate(" drop table t6");
getConnection().rollback();
st.close();
}
/**
* Tries to determine the if the VM we're running in is 32 or 64 bit by
* looking at the system properties.
*
* @return true if 64 bit
*/
private static boolean is64BitJVM() {
// Try the direct way first, by looking for 'sun.arch.data.model'
String dataModel = getSystemProperty("sun.arch.data.model");
try {
if (Integer.parseInt(dataModel) == 64)
return true;
else
return false;
} catch (NumberFormatException ignoreNFE) {}
// Try 'os.arch'
String arch = getSystemProperty("os.arch");
// See if we recognize the property value.
if (arch != null) {
// Is it a known 32 bit architecture?
String[] b32 = new String[] {"i386", "x86", "sparc"};
if (Arrays.asList(b32).contains(arch)) return false;
// Is it a known 64 bit architecture?
String[] b64 = new String[] {"amd64", "x86_64", "sparcv9"};
if (Arrays.asList(b64).contains(arch)) return true;
}
// Didn't find out anything.
BaseTestCase.traceit("Bitness undetermined, sun.arch.data.model='" +
dataModel + "', os.arch='" + arch + "', assuming we're 32 bit");
// we don't know, assume it's 32 bit.
return false;
}
}
|