1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.XplainStatisticsTest
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.
*/
package org.apache.derbyTesting.functionTests.tests.lang;
import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
import java.net.MalformedURLException;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.sql.Types;
import java.util.Date;
import java.util.Random;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import junit.framework.Assert;
import junit.framework.Test;
import org.apache.derby.impl.tools.planexporter.AccessDatabase;
import org.apache.derby.tools.PlanExporter;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.SupportFilesSetup;
import org.apache.derbyTesting.junit.XML;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
/**
* This suite contains a set of tests for the new XPLAIN style of
* runtime statistics capturing which was added as part of DERBY-2487
* and also a set of tests within tests generated under DERBY-2487
* are added as part of DERBY-4587-PlanExporter tool.
*
* There are a large number of tests which follow the pattern of:
* - enable capture
* - execute a single statement
* - stop capture
* - verify that the right stuff was captured
*
* FIXME -- some general to-do items that I don't want to forget:
* - should resultSetNumber be its own column in sysxplain_resultsets?
* - need MORE tests of xplain-only mode
* - need a test of external sorting/merging
* - need to cross-check the result set types, and verify that they're
* all tested at least once
*/
public class XplainStatisticsTest extends BaseJDBCTestCase {
public XplainStatisticsTest(String name) {
super(name);
}
public static Test suite() {
timeSuiteStarted = (new Date()).getTime();
BaseTestSuite allTests =
new BaseTestSuite(XplainStatisticsTest.class,
"XplainStatisticsTest");
Test test = allTests;
test = new SupportFilesSetup(test); //added by DERBY-4587
return new CleanDatabaseTestSetup(test) {
protected void decorateSQL(Statement s)
throws SQLException
{
createSchemaObjects(s);
}
};
}
private static long timeSuiteStarted;
@Override
protected void setUp() throws SQLException {
// DERBY-6306: Some of the statistics, especially those that give
// information about compilation timing, are sensitive to whether
// preparing a statement in fact compiles the statement or if it
// just fetches it from the statement cache. Empty the statement
// cache between each test case, so that they don't need to worry
// about statements lying around from earlier test cases affecting
// the results.
emptyStatementCache();
}
/**
* Creates a variety of tables used by the various tests.
* The tests use the same basic schema as the 'toursdb' sample
* database, with a much smaller set of data. We really only
* populate the COUNTRIES table; the other tables have few or no rows.
*
* @throws SQLException
*/
private static void createSchemaObjects(Statement st)
throws SQLException
{
st.executeUpdate(
"CREATE TABLE AIRLINES (" +
" AIRLINE CHAR(2) NOT NULL ," +
" AIRLINE_FULL VARCHAR(24)," +
" BASIC_RATE DOUBLE PRECISION," +
" DISTANCE_DISCOUNT DOUBLE PRECISION," +
" BUSINESS_LEVEL_FACTOR DOUBLE PRECISION," +
" FIRSTCLASS_LEVEL_FACTOR DOUBLE PRECISION," +
" ECONOMY_SEATS INTEGER," +
" BUSINESS_SEATS INTEGER," +
" FIRSTCLASS_SEATS INTEGER)");
st.executeUpdate(
"ALTER TABLE AIRLINES" +
" ADD CONSTRAINT AIRLINES_PK Primary Key (AIRLINE)");
st.executeUpdate(
"CREATE TABLE COUNTRIES (" +
" COUNTRY VARCHAR(26) NOT NULL," +
" COUNTRY_ISO_CODE CHAR(2) NOT NULL ," +
" REGION VARCHAR(26))");
st.executeUpdate(
"ALTER TABLE COUNTRIES" +
" ADD CONSTRAINT COUNTRIES_PK Primary Key (COUNTRY_ISO_CODE)");
st.executeUpdate(
"ALTER TABLE COUNTRIES" +
" ADD CONSTRAINT COUNTRIES_UNQ_NM Unique (COUNTRY)");
st.executeUpdate(
"CREATE TABLE CITIES (" +
" CITY_ID INTEGER NOT NULL ," +
" CITY_NAME VARCHAR(24) NOT NULL," +
" COUNTRY VARCHAR(26) NOT NULL," +
" AIRPORT VARCHAR(3)," +
" LANGUAGE VARCHAR(16)," +
" COUNTRY_ISO_CODE CHAR(2) )");
st.executeUpdate(
"ALTER TABLE CITIES" +
" ADD CONSTRAINT CITIES_PK Primary Key (CITY_ID)");
st.executeUpdate(
"ALTER TABLE CITIES" +
" ADD CONSTRAINT COUNTRIES_FK Foreign Key (COUNTRY_ISO_CODE)" +
" REFERENCES COUNTRIES (COUNTRY_ISO_CODE)");
st.executeUpdate(
"CREATE TABLE FLIGHTS (" +
" FLIGHT_ID CHAR(6) NOT NULL ," +
" SEGMENT_NUMBER INTEGER NOT NULL ," +
" ORIG_AIRPORT CHAR(3)," +
" DEPART_TIME TIME," +
" DEST_AIRPORT CHAR(3)," +
" ARRIVE_TIME TIME," +
" MEAL CHAR(1)," +
" FLYING_TIME DOUBLE PRECISION," +
" MILES INTEGER," +
" AIRCRAFT VARCHAR(6))");
st.executeUpdate(
"CREATE INDEX DESTINDEX ON FLIGHTS (DEST_AIRPORT) ");
st.executeUpdate(
"CREATE INDEX ORIGINDEX ON FLIGHTS (ORIG_AIRPORT) ");
st.executeUpdate(
"ALTER TABLE FLIGHTS" +
" ADD CONSTRAINT FLIGHTS_PK Primary Key (FLIGHT_ID, SEGMENT_NUMBER)");
st.executeUpdate(
"CREATE TABLE FLIGHTAVAILABILITY (" +
" FLIGHT_ID CHAR(6) NOT NULL ," +
" SEGMENT_NUMBER INTEGER NOT NULL ," +
" FLIGHT_DATE DATE NOT NULL ," +
" ECONOMY_SEATS_TAKEN INTEGER DEFAULT 0," +
" BUSINESS_SEATS_TAKEN INTEGER DEFAULT 0," +
" FIRSTCLASS_SEATS_TAKEN INTEGER DEFAULT 0)");
st.executeUpdate(
"ALTER TABLE FLIGHTAVAILABILITY" +
" ADD CONSTRAINT FLIGHTAVAIL_PK Primary Key " +
" (FLIGHT_ID, SEGMENT_NUMBER, FLIGHT_DATE)");
st.executeUpdate(
"ALTER TABLE FLIGHTAVAILABILITY" +
" ADD CONSTRAINT FLIGHTS_FK2 Foreign Key (FLIGHT_ID, SEGMENT_NUMBER)" +
" REFERENCES FLIGHTS (FLIGHT_ID, SEGMENT_NUMBER)");
st.executeUpdate(
"CREATE TABLE MAPS (" +
" MAP_ID INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY " +
" (START WITH 1, INCREMENT BY 1)," +
" MAP_NAME VARCHAR(24) NOT NULL," +
" REGION VARCHAR(26)," +
" AREA DECIMAL(8,4) NOT NULL," +
" PHOTO_FORMAT VARCHAR(26) NOT NULL," +
" PICTURE BLOB(102400)," +
" UNIQUE (MAP_ID, MAP_NAME))");
st.executeUpdate(
"CREATE TABLE FLIGHTS_HISTORY (" +
" FLIGHT_ID CHAR(6)," +
" SEGMENT_NUMBER INTEGER," +
" ORIG_AIRPORT CHAR(3)," +
" DEPART_TIME TIME," +
" DEST_AIRPORT CHAR(3)," +
" ARRIVE_TIME TIME," +
" MEAL CHAR(1)," +
" FLYING_TIME DOUBLE PRECISION," +
" MILES INTEGER," +
" AIRCRAFT VARCHAR(6), " +
" STATUS VARCHAR (20))");
st.executeUpdate(
"insert into FLIGHTS values ('AA1111',1,'ABQ','09:00:00','LAX','09:19:00','S',1.328,664,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1112',1,'LAX','09:00:00','ABQ','11:19:00','S',1.328,664,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1113',1,'ABQ','09:00:00','PHX','09:39:00','S',0.658,329,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1114',1,'PHX','09:00:00','ABQ','09:39:00','S',0.658,329,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1115',1,'ABQ','09:00:00','OKC','11:02:00','B',1.034,517,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1116',1,'OKC','09:00:00','ABQ','09:02:00','B',1.034,517,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1117',1,'AKL','09:00:00','HNL','18:48:00','L',8.804,4402,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1118',1,'HNL','13:30:00','AKL','21:18:00','D',8.804,4402,'DC10')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1119',1,'AKL','09:00:00','NRT','15:59:00','L',10.996,5498,'B747')");
st.executeUpdate(
"insert into FLIGHTS values ('AA1120',1,'NRT','09:00:00','AKL','23:59:00','L',10.996,5498,'B747')");
st.executeUpdate(
"insert into COUNTRIES values ( 'Afghanistan','AF','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ( 'Albania','AL','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Algeria','DZ','North Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('American Samoa','AS','Pacific Islands')");
st.executeUpdate(
"insert into COUNTRIES values ('Angola','AO','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Argentina','AR','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Armenia','AM','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Australia','AU','Australia and New Zealand')");
st.executeUpdate(
"insert into COUNTRIES values ('Austria','AT','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Azerbaijan','AZ','Central Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Bahamas','BS','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Bangladesh','BD','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Barbados','BB','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Belgium','BE','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Belize','BZ','Central America')");
st.executeUpdate(
"insert into COUNTRIES values ('Bermuda','BM','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Bolivia','BO','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Botswana','BW','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Brazil','BR','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Bulgaria','BG','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Cambodia','KH','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Cameroon','CM','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Canada','CA','North America')");
st.executeUpdate(
"insert into COUNTRIES values ('Cape Verde','CV','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Chile','CL','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('China','CN','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Colombia','CO','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Congo','CG','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Costa Rica','CR','Central America')");
st.executeUpdate(
"insert into COUNTRIES values ('Cote d''Ivoire','CI','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Cuba','CU','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Czech Republic','CZ','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Denmark','DK','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Dominical Republic','DO','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Ecuador','EC','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Egypt','EG','North Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('El Salvador','SV','Central America')");
st.executeUpdate(
"insert into COUNTRIES values ('Ethiopia','ET','North Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Falkland Islands','FK','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Fiji','FJ','Pacific Islands')");
st.executeUpdate(
"insert into COUNTRIES values ('Finland','FI','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('France','FR','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Georgia','GE','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Germany','DE','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Ghana','GH','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Greece','GR','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Guadeloupe','GP','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Guatemala','GT','Central America')");
st.executeUpdate(
"insert into COUNTRIES values ('Honduras','HN','Central America')");
st.executeUpdate(
"insert into COUNTRIES values ('Hungary','HU','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Iceland','IS','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('India','IN','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Indonesia','ID','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Iran','IR','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Iraq','IQ','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Ireland','IE','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Israel','IL','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Italy','IT','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Jamaica','JM','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Japan','JP','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Jordan','JO','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Kenya','KE','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Korea, Republic of','KR','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Lebanon','LB','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Lithuania','LT','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Madagascar','MG','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Malaysia','MY','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Mali','ML','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Mexico','MX','North America')");
st.executeUpdate(
"insert into COUNTRIES values ('Morocco','MA','North Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Mozambique','MZ','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Nepal','NP','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Netherlands','NL','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('New Zealand','NZ','Australia and New Zealand')");
st.executeUpdate(
"insert into COUNTRIES values ('Nicaragua','NI','Central America')");
st.executeUpdate(
"insert into COUNTRIES values ('Nigeria','NG','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Norway','NO','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Pakistan','PK','Central Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Paraguay','PY','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Peru','PE','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Philippines','PH','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Poland','PL','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Portugal','PT','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Russia','RU','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Samoa','WS','Pacific Islands')");
st.executeUpdate(
"insert into COUNTRIES values ('Senegal','SN','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Sierra Leone','SL','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Singapore','SG','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Slovakia','SK','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('South Africa','ZA','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Spain','ES','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Sri Lanka','LK','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Sudan','SD','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Sweden','SE','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Switzerland','CH','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Syrian Arab Republic','SY','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Tajikistan','TJ','Central Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Tanzania','TZ','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Thailand','TH','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Trinidad and Tobago','TT','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Tunisia','TN','North Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Turkey','TR','Middle East')");
st.executeUpdate(
"insert into COUNTRIES values ('Ukraine','UA','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('United Kingdom','GB','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('United States','US','North America')");
st.executeUpdate(
"insert into COUNTRIES values ('Uruguay','UY','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Uzbekistan','UZ','Central Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Venezuela','VE','South America')");
st.executeUpdate(
"insert into COUNTRIES values ('Viet Nam','VN','Asia')");
st.executeUpdate(
"insert into COUNTRIES values ('Virgin Islands (British)','VG','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Virgin Islands (U.S.)','VI','Caribbean')");
st.executeUpdate(
"insert into COUNTRIES values ('Yugoslavia','YU','Europe')");
st.executeUpdate(
"insert into COUNTRIES values ('Zaire','ZR','Africa')");
st.executeUpdate(
"insert into COUNTRIES values ('Zimbabwe','ZW','Africa')");
// This table 't' sets up a case where you can visit a
// deleted row via 'select x from t'
st.executeUpdate(
"create table t (x int not null primary key, y char(250))");
st.executeUpdate(
"insert into t values (1, 'a'), (2,'b'), (3,'c'), (4,'d')");
st.executeUpdate(
"delete from t where x = 3");
}
private static boolean hasTable(Statement s,
String schemaName, String tableName)
throws SQLException
{
ResultSet rs = s.getConnection().getMetaData().getTables((String)null,
schemaName, tableName, new String[] {"TABLE"});
boolean tableFound = rs.next();
rs.close();
return tableFound;
}
private static String []tableNames = {
"SYSXPLAIN_STATEMENTS",
"SYSXPLAIN_STATEMENT_TIMINGS",
"SYSXPLAIN_RESULTSETS",
"SYSXPLAIN_RESULTSET_TIMINGS",
"SYSXPLAIN_SORT_PROPS",
"SYSXPLAIN_SCAN_PROPS",
};
private static void enableXplainStyle(Statement s)
throws SQLException
{
verifyXplainUnset(s);
for (int i = 0; i < tableNames.length; i++)
if (hasTable(s, "XPLTEST", tableNames[i]))
s.execute("delete from XPLTEST." + tableNames[i]);
s.execute("call SYSCS_UTIL.SYSCS_SET_RUNTIMESTATISTICS(1)");
s.execute("call syscs_util.syscs_set_xplain_schema('XPLTEST')");
s.execute("call syscs_util.syscs_set_xplain_mode(0)");
}
private static void enableXplainStyleWithTiming(Statement s)
throws SQLException
{
enableXplainStyle(s);
s.execute("call syscs_util.syscs_set_statistics_timing(1)");
}
private static void enableXplainOnlyMode(Statement s)
throws SQLException
{
s.execute("call syscs_util.syscs_set_xplain_mode(1)");
}
private static void clearXplainOnlyMode(Statement s)
throws SQLException
{
s.execute("call syscs_util.syscs_set_xplain_mode(0)");
}
/**
*
* @param s
* @param exportPlan whether or not the PlanExporter tool should be used
* to export the plan of the recorded statements
* @throws Exception
*/
private static void disableXplainStyle(Statement s, boolean exportPlan)
throws Exception
{
s.execute("call SYSCS_UTIL.SYSCS_SET_RUNTIMESTATISTICS(0)");
/*
* Added by DERBY-4587 to test the generation of XML files
* from PlanExporter tool.
*/
if (exportPlan) {
String dbUrl = s.getConnection().getMetaData().getURL();
ResultSet rs = s.executeQuery(
"select stmt_id from XPLTEST.sysxplain_statements");
while (rs.next()) {
String stmt_id = rs.getString(1);
String output = invokePlanExporterTool(
dbUrl, "XPLTEST", stmt_id, "-xml",
SupportFilesSetup.getReadWriteFileName(stmt_id + ".xml"));
// Expect the plan exporter tool to print nothing on success.
assertEquals("Unexpected output from PlanExporter", "", output);
}
}
s.execute("call syscs_util.syscs_set_xplain_schema('')");
}
private static void verifyXplainUnset(Statement s)
throws SQLException
{
JDBC.assertFullResultSet(
s.executeQuery("values SYSCS_UTIL.syscs_get_xplain_schema()"),
new String[][]{{""}});
JDBC.assertFullResultSet(
s.executeQuery("values SYSCS_UTIL.syscs_get_xplain_mode()"),
new String[][]{{"0"}});
}
private void verifyNonNullDRDA_ID(Statement s)
throws SQLException
{
ResultSet rs;
rs = s.executeQuery("select drda_id from xpltest.sysxplain_statements");
while (rs.next())
{
String drda_id = rs.getString("DRDA_ID");
if (rs.wasNull() || drda_id == null || drda_id.trim().length() == 0)
fail("While running in a network-client configuration, " +
"DRDA_ID was null or blank.");
}
rs.close();
}
/**
* Invoke the PlanExporter tool.
*
* @param args the command line arguments to pass to the tool
* @return the output printed by the tool (typically an empty string
* on successful execution)
*/
private static String invokePlanExporterTool(String... args) {
PrintStream out = System.out;
PrintStream err = System.err;
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
PrintStream testOutput = new PrintStream(byteOut);
// Redirect System.out and System.err so that the output
// can be captured.
setSystemOut(testOutput);
setSystemErr(testOutput);
try {
PlanExporter.main(args);
} finally {
// Restore System.out and System.err.
setSystemOut(out);
setSystemErr(err);
}
testOutput.flush();
return byteOut.toString();
}
// Can be used internally when diagnosing failed tests.
//
private void dumpResultSets(Statement s)
throws SQLException
{
ResultSet rs;
rs = s.executeQuery("select * from xpltest.sysxplain_resultsets");
while (rs.next())
{
System.out.println(
rs.getString("rs_id")+","+
rs.getString("op_identifier")+","+
rs.getString("op_details")+","+
rs.getString("no_opens")+","+
rs.getString("no_index_updates")+","+
rs.getString("lock_mode")+","+
rs.getString("lock_granularity")+","+
rs.getString("parent_rs_id")+","+
rs.getString("est_row_count")+","+
rs.getString("est_cost")+","+
rs.getString("affected_rows")+","+
rs.getString("deferred_rows")+","+
rs.getString("input_rows")+","+
rs.getString("seen_rows")+","+
rs.getString("seen_rows_right")+","+
rs.getString("filtered_rows")+","+
rs.getString("returned_rows")+","+
rs.getString("empty_right_rows")+","+
rs.getString("index_key_opt")+","+
rs.getString("scan_rs_id")+","+
rs.getString("sort_rs_id")+","+
rs.getString("stmt_id")+","+
rs.getString("timing_id"));
}
rs.close();
}
private void dumpStatements(Statement s)
throws SQLException
{
ResultSet rs;
rs = s.executeQuery("select * from xpltest.sysxplain_statements");
while (rs.next())
{
System.out.println(
rs.getString("stmt_id")+","+
rs.getString("stmt_name")+","+
rs.getString("stmt_type")+","+
rs.getString("stmt_text")+","+
rs.getString("jvm_id")+","+
rs.getString("os_identifier")+","+
rs.getString("xplain_mode")+","+
rs.getString("xplain_time")+","+
rs.getString("xplain_thread_id")+","+
rs.getString("transaction_id")+","+
rs.getString("session_id")+","+
rs.getString("database_name")+","+
rs.getString("drda_id")+","+
rs.getString("timing_id"));
}
rs.close();
}
/**
* Added by DERBY-4587
* Returns the stmt_id for this particular statement
* @param s Statement
* @return stmt_id
* */
private String getStmtID(Statement s) throws SQLException{
ResultSet rs;
String stmt_id;
rs = s.executeQuery(
"select stmt_id from XPLTEST.sysxplain_statements");
rs.next();
stmt_id = rs.getString(1);
rs.close();
return stmt_id;
}
/**
* Added by DERBY-4587
* Returns the stmt_id for this particular statement
* @param s Statement
* @return stmt_id
* */
private String[] getStmtIDArray(Statement s, int length) throws SQLException{
ResultSet rs;
String[] stmt_id = new String[length];
int i=0;
rs = s.executeQuery(
"select stmt_id from XPLTEST.sysxplain_statements");
while(rs.next()){
stmt_id[i] = rs.getString(1);
i++;
if (i==length)
assertFalse(rs.next());
}
rs.close();
return stmt_id;
}
/**
* Added by DERBY-4587
* @param file name of the XML file - without extension
* @return a Document object
* @throws Exception
*/
private Object getADocument(final String file) throws Exception {
Document document;
DocumentBuilderFactory factory =
DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
InputSource xml = new InputSource(
AccessController.doPrivileged
(new java.security.PrivilegedExceptionAction<InputStream>(){
public InputStream run()throws Exception{
return new FileInputStream(
SupportFilesSetup.getReadWriteURL(file+".xml").getPath()
);}})
);
document = builder.parse(xml);
document.getDocumentElement().normalize();
return document;
}
/**
* Added by DERBY-4587
* gets the <statement> element from the XML
* @param file XML file
* @return statement mentioned in the XML
* @throws Exception
*/
private String readStatement(final String file)
throws Exception
{
Document document = (Document) getADocument(file);
return document.getElementsByTagName("statement").item(0).getChildNodes().item(0).getNodeValue();
}
/**
* Added by DERBY-4587
* count the # of <node> elements
* @param file XML file
* @return node count
* @throws Exception
*/
private int countNode(final String file) throws Exception{
Document document = (Document) getADocument(file);
return document.getElementsByTagName("node").getLength();
}
/**
* Added by DERBY-4587
* gets the "name" attributes of all nodes separated by a "|"
* @param file XML file
* @return "name" attribute's value of all nodes
* eg: "PROJECTION|TABLESCAN|"
* @throws Exception
*/
private String getNodeName(final String file) throws Exception{
Document document = (Document) getADocument(file);
NodeList lst=document.getElementsByTagName("node");
String name= "";
for(int i=0;i<lst.getLength();i++)
name+=lst.item(i).getAttributes().getNamedItem("name").getNodeValue()+"|";
return name;
}
/**
* Added by DERBY-4587
* gets attributes other than "name"
* @param file XML file
* @param attribute name of the attribute
* @param node node which this attribute belongs to
* @return if attribute doesn't exist ""
* else value of the attribute
* @throws Exception
*/
private String getNodeAttribute(final String file, String attribute, int node) throws Exception{
Document document = (Document) getADocument(file);
NodeList lst=document.getElementsByTagName("node");
if(lst.item(node).getAttributes().getNamedItem(attribute)==null)
return "";
return lst.item(node).getAttributes().getNamedItem(attribute).getNodeValue();
}
public void testPlanExporterSchemaExistence()
throws Exception
{
AccessDatabase access =
new AccessDatabase(getConnection(), "NoSuchSchema", "nostmt");
assertTrue( "Unexpectedly thought schema exists",
! access.verifySchemaExistance() );
}
public void testPlanExporterIllegalFileAccess()
throws Exception
{
// Make sure there is a statement with recorded statistics.
Statement s = createStatement();
enableXplainStyle(s);
JDBC.assertDrainResults(s.executeQuery("values 1"));
disableXplainStyle(s, true);
// Get the id of the statement.
ResultSet rs = s.executeQuery(
"select stmt_id from XPLTEST.sysxplain_statements");
assertTrue("no statements", rs.next());
String stmt_id = rs.getString("stmt_id");
JDBC.assertEmpty(rs);
// Try to write the plan to a file that the tool does not have
// permission to write to.
String output = invokePlanExporterTool(
getConnection().getMetaData().getURL(), "XPLTEST",
stmt_id, "-xml", "/illegal.xml");
// The plan exporter tool should fail with a permission error.
if (!output.contains("java.security.AccessControlException")) {
fail("Unexpected output from PlanExporter: " + output);
}
}
/**
* Verify that the plan exporter doesn't choke on special characters in
* the name of the XPLAIN schema. Regression test case for DERBY-4904.
*/
public void testPlanExporterSpecialCharactersInSchema() throws Exception {
String schema = "DERBY-4904 \"double\" and 'single' quoted schema";
String query = "select * from sysibm.sysdummy1";
PreparedStatement setStats = prepareStatement(
"call syscs_util.syscs_set_runtimestatistics(?)");
PreparedStatement setXplain = prepareStatement(
"call syscs_util.syscs_set_xplain_schema(?)");
// Enable XPLAIN statistics in a schema with special characters.
setStats.setInt(1, 1);
setStats.execute();
setXplain.setString(1, schema);
setXplain.execute();
// Execute a statement while XPLAIN is enabled.
Statement s = createStatement();
JDBC.assertSingleValueResultSet(
s.executeQuery(query),
"Y");
// Disable XPLAIN.
setStats.setInt(1, 0);
setStats.execute();
setXplain.setString(1, "");
setXplain.execute();
// Get the XPLAIN statistics.
ResultSet rs = s.executeQuery(
"select stmt_id, stmt_text from " +
JDBC.escape(schema, "SYSXPLAIN_STATEMENTS"));
assertTrue(rs.next());
String stmtId = rs.getString(1);
assertEquals(query, rs.getString(2));
assertFalse(rs.next());
rs.close();
// Create the XML file. This used to result in a syntax error.
String output = invokePlanExporterTool(
getConnection().getMetaData().getURL(),
schema,
stmtId,
"-xml",
SupportFilesSetup.getReadWriteFileName(stmtId + ".xml"));
// Expect empty output on successful execution of the tool.
assertEquals("Unexpected output from PlanExporter", "", output);
// If we have the required libraries for parsing XML files, verify
// that the XML file contains valid data.
if (XML.classpathMeetsXMLReqs()) {
assertEquals(query, readStatement(stmtId));
}
}
/**
* Tests that invalidation of a statement after compile-time doesn't result
* in duplicate entries in the XPLAIN-table(s).
* <p>
* This test is timing-dependent, and may not trigger the bug under all
* circumstances.
* <p>
* See DERBY-4849.
*
* @throws Exception if something goes wrong
*/
public void testSimpleQueryMultiWithInvalidation()
throws Exception {
// Start two threads; one selecting from COUNTRIES with XPLAIN on, and
// one generating statistics for the same table.
// The latter thread should cause the statement executed in the former
// thread to be invalidated.
long runTime = 10*1000; // Run for 10 seconds
AbstractMTThread select = new MTSimpleSelect(
openDefaultConnection(), runTime);
AbstractMTThread invalidate = new MTSimpleInvalidate(
openDefaultConnection(), runTime);
Thread tInv = new Thread(invalidate);
Thread tSel = new Thread(select);
tInv.start();
tSel.start();
// Wait until the threads have finished.
tInv.join();
tSel.join();
// Check if any errors were raised in the worker-threads.
int selects = select.getActionCount();
int invalidations = invalidate.getActionCount();
println("selects=" + selects + ", invalidations=" + invalidations);
if (select.failed()) {
fail("select-thread failed", select.getError());
}
if (invalidate.failed()) {
fail("invalidate-thread failed", invalidate.getError());
}
// There should be as many entries in the XPLAIN-table as the number
// of times we have executed the select-statement.
Statement s = createStatement();
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements"),
Integer.toString(selects));
}
/**
* Verify that XPLAIN style captures basic statistics and timings.
*
* This test runs
*
* SELECT Country FROM Countries WHERE Region = 'Central America'
*
* and verifies that there are some reasonable values captured
* into the XPLAIN system tables.
* @throws IOException
* @throws PrivilegedActionException
* @throws MalformedURLException
*/
public void testSimpleQuery() throws Exception
{
Statement s = createStatement();
enableXplainStyleWithTiming(s);
String selectStatement =
"SELECT country from countries WHERE region = 'Central America'";
JDBC.assertUnorderedResultSet(
s.executeQuery(selectStatement),
new String[][] { {"Belize"}, {"Costa Rica"}, {"El Salvador"},
{"Guatemala"}, {"Honduras"}, {"Nicaragua"} } );
disableXplainStyle(s, true);
// The statement should have been executed as a PROJECTION
// wrapped around a TABLESCAN. The TABLESCAN should have had
// scan properties. The TABLESCAN should have filtered 114 rows
// down to 6 rows, and the PROJECTION should have no parent RS.
//
// THe XPLAIN system tables should contain the following rows:
// STATEMENTS: 1 row,
// STATEMENT_TIMINGS: 1 row
// RESULTSETS: 2 rows
// RESULTSET_TIMINGS: 2 rows
// SCAN_PROPS: 1 row
// SORT PROPS: no rows
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statement_timings"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "2");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultset_timings"), "2");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_scan_props"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_sort_props"), "0");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements " +
" where stmt_text like '%from countries%' "), "1");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets"),
new String[][] { {"PROJECTION"}, {"TABLESCAN"} } );
// Statement type is 'S' for Select, Xplain_mode is 'F' for FULL
JDBC.assertUnorderedResultSet(s.executeQuery(
"select stmt_type, stmt_text, xplain_mode " +
" from xpltest.sysxplain_statements"),
new String[][] { {"S",selectStatement, "F"} } );
if (! usingDerbyNetClient())
JDBC.assertSingleValueResultSet(s.executeQuery(
"select drda_id from xpltest.sysxplain_statements"), null);
else
verifyNonNullDRDA_ID(s);
// We should have opened the inner TABLESCAN resultset once, and
// it should have seen 6 rows.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select no_opens from xpltest.sysxplain_resultsets " +
"where op_identifier = 'TABLESCAN'"), "1");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select no_opens, seen_rows, returned_rows, " +
" lock_mode, lock_granularity " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'TABLESCAN'"),
new String[][] { {"1", "6", "6", "IS", "R"} } );
// The TABLESCAN should have scanned the COUNTRIES heap using
// read-committed isolation, and it should have visited 114 rows
// on 2 pages and qualified 6 of those rows.
// Columns {0, 2} should have been fetched.
JDBC.assertUnorderedResultSet(s.executeQuery(
"select sp.scan_object_name, sp.scan_object_type, " +
"sp.scan_type, sp.isolation_level, " +
"sp.no_visited_rows, sp.no_qualified_rows, "+
"sp.no_visited_pages, " +
"sp.no_fetched_columns, sp.bitset_of_fetched_columns " +
"from xpltest.sysxplain_scan_props sp " +
"join xpltest.sysxplain_resultsets rs " +
"on sp.scan_rs_id = rs.scan_rs_id " +
"where rs.op_identifier='TABLESCAN'"),
new String[][] { {"COUNTRIES", "T", "HEAP",
"RC", "114", "6", "2", "2", "{0, 2}"} } );
// Verify that the ID values can be used to join the rows:
JDBC.assertSingleValueResultSet(s.executeQuery(
"select sp.no_visited_rows " +
"from xpltest.sysxplain_scan_props sp, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements st " +
"where st.stmt_id = rs.stmt_id and " +
" rs.scan_rs_id = sp.scan_rs_id and " +
" rs.op_identifier = 'TABLESCAN' and " +
" sp.scan_object_name = 'COUNTRIES'"),
"114");
verifySensibleStatementTimings(s);
verifySensibleResultSetTimings(s);
/*
* This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(2,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|TABLESCAN|",
getNodeName(stmt_id));
//for TABLESCAN node test whether the scan related entries
//are exist and verify their values.
Assert.assertEquals("COUNTRIES",
getNodeAttribute(stmt_id,"scanned_object",1));
Assert.assertEquals("HEAP",
getNodeAttribute(stmt_id,"scan_type",1));
Assert.assertEquals("2",
getNodeAttribute(stmt_id,"visited_pages",1));
}
}
private String getStmtIDByName(Statement s, String sName)
throws SQLException
{
ResultSet rs;
String stmt_id = "?";
rs = s.executeQuery(
"select stmt_id from XPLTEST.sysxplain_statements "+
"where stmt_name='"+sName+"'");
if( rs.next() )
{
stmt_id = rs.getString(1);
//System.out.println("Found statemnt id " + stmt_id);
}
rs.close();
return stmt_id;
}
public void testSimpleXplainOnly() throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
enableXplainOnlyMode(s);
s.setCursorName("1");
JDBC.assertEmpty(s.executeQuery(
"SELECT country from countries "+
"WHERE region = 'Central America'" ));
clearXplainOnlyMode(s);
disableXplainStyle(s, true);
// dumpStatements(s);
// dumpResultSets(s);
// There should be 1 statement captured with stmt_id='1'.
// It should have a PROJECTION and a TABLESCAN; the TABLESCAN should be
// on the COUNTRIES table.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements "+
"where stmt_name='1'"), "1");
String stmt_id = getStmtIDByName( s, "1" );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"'"), "2");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"' and op_identifier='PROJECTION'"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"' and op_identifier='TABLESCAN'"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select op_details from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"' and op_identifier='TABLESCAN'"),
"T: COUNTRIES");
enableXplainStyle(s);
enableXplainOnlyMode(s);
s.setCursorName("2");
JDBC.assertEmpty(s.executeQuery(
"select sql_text from syscs_diag.transaction_table " +
"where status != 'IDLE'" ));
clearXplainOnlyMode(s);
disableXplainStyle(s, true);
//dumpStatements(s);
//dumpResultSets(s);
// This statement should have three result sets:
// - PROJECTION (select sql_text)
// - PROJECT-FILTER (where status != IDLE)
// - VTI (syscs_diag.transaction_table)
//
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_statements "+
"where stmt_name='2'"), "1");
stmt_id = getStmtIDByName( s, "2" );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"' and op_identifier='PROJECTION'"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"' and "+
" op_identifier='PROJECT-FILTER'"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets "+
"where stmt_id='"+stmt_id+"' and op_identifier='VTI'"), "1");
String selectStatement =
"select region, count(country) from app.countries group by region";
enableXplainStyle(s);
enableXplainOnlyMode(s);
s.setCursorName("3");
JDBC.assertEmpty(s.executeQuery(selectStatement));
clearXplainOnlyMode(s);
disableXplainStyle(s, true);
//dumpStatements(s);
//dumpResultSets(s);
// This statement is executed as a PROJECTION with a child GROUPBY
// with a child PROJECTION with a child TABLESCAN. The TABLESCAN
// has a corresponding SCAN_PROPS row, the GROUPBY has a
// corresponding SORT_PROPS row. But since we're XPLAIN-ONLY, none
// of the actual processing did anything.
//
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
JDBC.assertFullResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
"order by op_identifier"),
new String[][] {
{"GROUPBY"},{"PROJECTION"},{"PROJECTION"},{"TABLESCAN"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where scan_rs_id is not null"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where sort_rs_id is not null"), "1");
JDBC.assertFullResultSet(s.executeQuery(
"select s.stmt_text, rs.op_identifier," +
" srt.no_input_rows, srt.no_output_rows " +
" from xpltest.sysxplain_sort_props srt, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements s " +
" where rs.stmt_id = s.stmt_id and " +
" rs.sort_rs_id = srt.sort_rs_id"),
new String[][] {
{selectStatement, "GROUPBY", "0", "0"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select srt.sort_type, srt.no_input_rows, " +
" srt.no_output_rows, srt.no_merge_runs, " +
" srt.merge_run_details, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
"from xpltest.sysxplain_sort_props srt " +
"join xpltest.sysxplain_resultsets rs " +
"on srt.sort_rs_id = rs.sort_rs_id " +
"where rs.op_identifier='GROUPBY'"),
new String[][] {
{"IN","0","0",null, null, null,"N","N"} } );
}
public void testXplainOnlyExecutePrepared() throws Exception
{
Statement s = createStatement();
String selectStatement =
"select region, count(country) from app.countries group by region";
PreparedStatement ps = prepareStatement( selectStatement );
enableXplainStyle(s);
enableXplainOnlyMode(s);
JDBC.assertEmpty(ps.executeQuery());
clearXplainOnlyMode(s);
disableXplainStyle(s, true);
//dumpStatements(s);
//dumpResultSets(s);
// This statement is executed as a PROJECTION with a child GROUPBY
// with a child PROJECTION with a child TABLESCAN. The TABLESCAN
// has a corresponding SCAN_PROPS row, the GROUPBY has a
// corresponding SORT_PROPS row. But since we're XPLAIN-ONLY, none
// of the actual processing did anything.
//
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
JDBC.assertFullResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
"order by op_identifier"),
new String[][] {
{"GROUPBY"},{"PROJECTION"},{"PROJECTION"},{"TABLESCAN"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where scan_rs_id is not null"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where sort_rs_id is not null"), "1");
JDBC.assertFullResultSet(s.executeQuery(
"select s.stmt_text, rs.op_identifier," +
" srt.no_input_rows, srt.no_output_rows " +
" from xpltest.sysxplain_sort_props srt, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements s " +
" where rs.stmt_id = s.stmt_id and " +
" rs.sort_rs_id = srt.sort_rs_id"),
new String[][] {
{selectStatement, "GROUPBY", "0", "0"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select srt.sort_type, srt.no_input_rows, " +
" srt.no_output_rows, srt.no_merge_runs, " +
" srt.merge_run_details, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
"from xpltest.sysxplain_sort_props srt " +
"join xpltest.sysxplain_resultsets rs " +
"on srt.sort_rs_id = rs.sort_rs_id " +
"where rs.op_identifier='GROUPBY'"),
new String[][] {
{"IN","0","0",null, null, null,"N","N"} } );
// Since now we're not in XplainOnly mode, the prepared statement
// returns the expected normal result set.
JDBC.assertUnorderedResultSet(ps.executeQuery(),
new String[][] {
{"Africa", "19"}, {"Asia", "15"},
{"Australia and New Zealand", "2"}, {"Caribbean", "10"},
{"Central America", "6"}, {"Central Asia", "4"},
{"Europe", "29"}, {"Middle East", "7"},
{"North Africa", "5"}, {"North America", "3"},
{"Pacific Islands", "3"}, {"South America", "11"} } );
// And then back to empty again:
enableXplainStyle(s);
enableXplainOnlyMode(s);
JDBC.assertEmpty(ps.executeQuery());
clearXplainOnlyMode(s);
disableXplainStyle(s, true);
// Verify that statistics were collected.
JDBC.assertDrainResults(
s.executeQuery("select * from xpltest.sysxplain_statements"),
1);
}
public void testXplainOnlyPrepared() throws Exception
{
Statement s = createStatement();
String selectStatement =
"select region, count(country) from app.countries group by region";
// Try preparing the statement while we're in xplain-only mode, then
// execute it normally.
enableXplainStyle(s);
enableXplainOnlyMode(s);
PreparedStatement ps2 = prepareStatement( selectStatement );
clearXplainOnlyMode(s);
JDBC.assertUnorderedResultSet(ps2.executeQuery(),
new String[][] {
{"Africa", "19"}, {"Asia", "15"},
{"Australia and New Zealand", "2"}, {"Caribbean", "10"},
{"Central America", "6"}, {"Central Asia", "4"},
{"Europe", "29"}, {"Middle East", "7"},
{"North Africa", "5"}, {"North America", "3"},
{"Pacific Islands", "3"}, {"South America", "11"} } );
disableXplainStyle(s, true);
//dumpStatements(s);
//dumpResultSets(s);
// This statement is executed as a PROJECTION with a child GROUPBY
// with a child PROJECTION with a child TABLESCAN. The TABLESCAN
// has a corresponding SCAN_PROPS row, the GROUPBY has a
// corresponding SORT_PROPS row. But since we're XPLAIN-ONLY, none
// of the actual processing did anything.
//
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
JDBC.assertFullResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
"order by op_identifier"),
new String[][] {
{"GROUPBY"},{"PROJECTION"},{"PROJECTION"},{"TABLESCAN"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where scan_rs_id is not null"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where sort_rs_id is not null"), "1");
JDBC.assertFullResultSet(s.executeQuery(
"select s.stmt_text, rs.op_identifier," +
" srt.no_input_rows, srt.no_output_rows " +
" from xpltest.sysxplain_sort_props srt, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements s " +
" where rs.stmt_id = s.stmt_id and " +
" rs.sort_rs_id = srt.sort_rs_id"),
new String[][] {
{selectStatement, "GROUPBY", "114", "12"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select srt.sort_type, srt.no_input_rows, " +
" srt.no_output_rows, srt.no_merge_runs, " +
" srt.merge_run_details, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
"from xpltest.sysxplain_sort_props srt " +
"join xpltest.sysxplain_resultsets rs " +
"on srt.sort_rs_id = rs.sort_rs_id " +
"where rs.op_identifier='GROUPBY'"),
new String[][] {
{"IN","114","12",null, null, null,"N","N"} } );
}
/**
* Make some basic first-order checks on the STATEMENT_TIMINGS rows.
*
* This method runs through the rows in the STATEMENT_TIMINGS table
* and makes some very high-level reasonableness checks:
*
* 1) The values for PARSE_TIME, BIND_TIME, OPTIMIZE_TIME,
* GENERATE_TIME, COMPILE_TIME, and EXECUTE_TIME should all
* be non-negative integer values.
* 2) The values of PARSE_TIME, BIND_TIME, OPTIMIZE_TIME, and
* GENERATE_TIME, summed together, should equal the value
* of COMPILE_TIME.
* 3) The values of BEGIN_COMP_TIME, END_COMP_TIME, BEGIN_EXE_TIME,
* and END_EXE_TIME should all be valid times, and should all
* be greater than the time when we started running these tests.
* 4) END_COMP_TIME should be G.E. BEGIN_COMP_TIME,
* BEGIN_EXE_TIME should be G.E. END_COMP_TIME, and
* END_EXE_TIME should be G.E. BEGIN_EXE_TIME
*/
private void verifySensibleStatementTimings(Statement s)
throws SQLException
{
ResultSet rs = s.executeQuery(
"select * from xpltest.sysxplain_statement_timings");
while (rs.next())
{
long parseTime = getNonNegativeLong(rs, "PARSE_TIME");
long bindTime = getNonNegativeLong(rs, "BIND_TIME");
long optimizeTime = getNonNegativeLong(rs, "OPTIMIZE_TIME");
long generateTime = getNonNegativeLong(rs, "GENERATE_TIME");
long compileTime = getNonNegativeLong(rs, "COMPILE_TIME");
long executeTime = getNonNegativeLong(rs, "EXECUTE_TIME");
// Due to rounding errors, this is not always exact? I think that
// the largest rounding error should be 2, because there are
// 4 sub-elements which each may be rounded off by 0.5 millis?
//
// So we'll accept a difference of 1 or 2 in the overall comp time
//
long compTimeRoundingError =
compileTime - (parseTime+bindTime+optimizeTime+generateTime);
if (compTimeRoundingError < 0 || compTimeRoundingError > 2)
assertEquals("compilation time did not compute (" +
parseTime+","+bindTime+","+optimizeTime+","+
generateTime+")",
compileTime, (parseTime+bindTime+optimizeTime+generateTime));
Timestamp beginCompTime=getNonNullTimestamp(rs, "BEGIN_COMP_TIME");
Timestamp endCompTime = getNonNullTimestamp(rs, "END_COMP_TIME");
Timestamp beginExeTime = getNonNullTimestamp(rs, "BEGIN_EXE_TIME");
Timestamp endExeTime = getNonNullTimestamp(rs, "END_EXE_TIME");
if (endCompTime.before(beginCompTime))
fail("END_COMP_TIME " + endCompTime +
" unexpectedly before BEGIN_COMP_TIME " + beginCompTime);
if (beginExeTime.before(endCompTime))
fail("BEGIN_EXE_TIME " + beginExeTime +
" unexpectedly before END_COMP_TIME " + endCompTime);
if (endExeTime.before(beginExeTime))
fail("END_EXE_TIME " + endExeTime +
" unexpectedly before BEGIN_EXE_TIME " + beginExeTime);
}
rs.close();
}
/**
* Make some basic first-order checks on the RESULTSET_TIMINGS rows.
*
* This method runs through the rows in the RESULTSET_TIMINGS table
* and makes some very simple checks for reasonableness of the values:
*
* 1) For each row in RESULTSETS, there should be a row in
* RESULTSET_TIMINGS
* 2) There should be non-negative values for CONSTRUCTOR_TIME, OPEN_TIME,
* NEXT_TIME, CLOSE_TIME, and EXECUTE_TIME.
* 3) If the result set has a non-zero value for RETURNED_ROWS, then
* there should be a non-negative value for AVG_NEXT_TIME_PER_ROW;
* conversely if the result set did not have any returned rows, then
* AVG_NEXT_TIME_PER_ROW should be null.
* 4) If the result set is a PROJECTION, then PROJECTION_TIME and
* RESTRICTION_TIME should have valid non-negative values;
* otherwise those columns should be NULL.
* 5) If the result set is a MATERIALIZE, then TEMP_CONG_CREATE_TIME
* and TEMP_CONG_FETCH_TIME should have valid non-negative values;
* otherwise those columns should be null.
*/
private void verifySensibleResultSetTimings(Statement s)
throws SQLException
{
ResultSet rs = s.executeQuery(
"select rs.op_identifier, rs.returned_rows, rt.* " +
"from xpltest.sysxplain_resultsets rs left outer join " +
" xpltest.sysxplain_resultset_timings rt " +
"on rs.timing_id = rt.timing_id");
while (rs.next())
{
String opIdentifier = rs.getString("OP_IDENTIFIER");
// Since we performed a LEFT OUTER JOIN, the TIMING_ID will be
// NULL if the resultset is missing a timings row.
String timingId = rs.getString("TIMING_ID");
assertNotNull("RESULTSET row missing for " + opIdentifier,
timingId);
getNonNegativeLong(rs, "CONSTRUCTOR_TIME");
getNonNegativeLong(rs, "OPEN_TIME");
getNonNegativeLong(rs, "NEXT_TIME");
getNonNegativeLong(rs, "CLOSE_TIME");
// FIXME -- EXECUTE_TIME is unexpectedly negative for various
// result sets.
// getNonNegativeLong(rs, "EXECUTE_TIME");
long returnedRows = rs.getLong("RETURNED_ROWS");
if (returnedRows > 0)
{
getNonNegativeLong(rs, "AVG_NEXT_TIME_PER_ROW");
}
else
{
long avgNextTimePerRow = rs.getLong("AVG_NEXT_TIME_PER_ROW");
assertTrue("Expected NULL for avg-next on rs " + opIdentifier,
rs.wasNull());
}
if (opIdentifier.equals("PROJECTION"))
{
getNonNegativeLong(rs, "PROJECTION_TIME");
getNonNegativeLong(rs, "RESTRICTION_TIME");
}
else
{
rs.getLong("PROJECTION_TIME");
assertTrue("Expected NULL PROJECTION_TIME for " + opIdentifier,
rs.wasNull());
rs.getLong("RESTRICTION_TIME");
assertTrue("Expected NULL RESTRICTION_TIME for " + opIdentifier,
rs.wasNull());
}
if (opIdentifier.equals("MATERIALIZE"))
{
getNonNegativeLong(rs, "TEMP_CONG_CREATE_TIME");
getNonNegativeLong(rs, "TEMP_CONG_FETCH_TIME");
}
else
{
rs.getLong("TEMP_CONG_CREATE_TIME");
assertTrue("Expected NULL TEMP_CONG_CREATE_TIME for " +
opIdentifier, rs.wasNull());
rs.getLong("TEMP_CONG_FETCH_TIME");
assertTrue("Expected NULL TEMP_CONG_FETCH_TIME for " +
opIdentifier, rs.wasNull());
}
}
}
private long getNonNegativeLong(ResultSet rs, String cName)
throws SQLException
{
long result = rs.getLong(cName);
assertTrue(cName + " unexpectedly NULL", ! rs.wasNull() );
assertTrue(cName + " unexpectedly negative(" + result + ")",
result >= 0);
return result;
}
private Timestamp getNonNullTimestamp(ResultSet rs, String cName)
throws SQLException
{
Timestamp result = rs.getTimestamp(cName);
assertTrue(cName + " unexpectedly NULL", ! rs.wasNull() );
assertNotNull(cName + " unexpectedly NULL", result);
assertTrue("Test started at " + timeSuiteStarted +
" but " + cName + " value is " + result.getTime(),
result.getTime() >= timeSuiteStarted);
return result;
}
/**
* Verify XPLAIN style handling of an INDEX scan.
*
* This test runs a query against FLIGHTS using the dest_airport
* index, and verifies the captured query plan statistics.
*/
public void testIndexScan() throws Exception
{
Statement s = createStatement();
enableXplainStyleWithTiming(s);
String selectStatement =
"SELECT flight_id from flights where dest_airport = 'ABQ'";
JDBC.assertUnorderedResultSet(s.executeQuery(selectStatement),
new String[][] { {"AA1112"}, {"AA1114"}, {"AA1116"} } );
disableXplainStyle(s, true);
// This query should have been executed as a PROJECTION whose child
// is a ROWIDSCAN whose child is an INDEXSCAN. The INDEXSCAN should
// be linked to a BTREE SCAN_PROPS row against the DESTINDEX index.
// The index scan should have visited 1 page and 4 rows, and should
// have qualified 3 of those rows, fetching 2 (ALL) the columns
// from those rows.
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets"),
new String[][] { {"PROJECTION"}, {"ROWIDSCAN"}, {"INDEXSCAN"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select p.parent_rs_id " +
" from xpltest.sysxplain_resultsets p, " +
" xpltest.sysxplain_resultsets r, " +
" xpltest.sysxplain_resultsets i " +
" where p.rs_id = r.parent_rs_id and " +
" r.rs_id = i.parent_rs_id and " +
" p.op_identifier='PROJECTION' and " +
" r.op_identifier='ROWIDSCAN' and " +
" i.op_identifier='INDEXSCAN'"),
null);
// All 3 resultsets rows should join to the same statements row.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(rs.op_identifier) " +
" from xpltest.sysxplain_statements st " +
" join xpltest.sysxplain_resultsets rs " +
" on st.stmt_id = rs.stmt_id"),
"3");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select sp.scan_object_name, sp.scan_object_type, " +
"sp.scan_type, sp.isolation_level, " +
"rs.lock_mode, rs.lock_granularity, " +
"sp.no_visited_rows, sp.no_qualified_rows, "+
"sp.no_visited_pages, sp.btree_height, sp.fetch_size, " +
"sp.no_fetched_columns, sp.bitset_of_fetched_columns " +
"from xpltest.sysxplain_scan_props sp " +
"join xpltest.sysxplain_resultsets rs " +
"on sp.scan_rs_id = rs.scan_rs_id " +
"where rs.op_identifier='INDEXSCAN'"),
new String[][] { {"DESTINDEX", "I", "BTREE",
"RC", "IS", "R",
"4", "3", "1", "-1", "16", "2", "ALL"} } );
verifySensibleStatementTimings(s);
verifySensibleResultSetTimings(s);
/* This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*/
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(3,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|ROWIDSCAN|INDEXSCAN|",
getNodeName(stmt_id));
//for INDEXSCAN node test whether the scan related entries
//are exist and verify their values.
Assert.assertEquals("DESTINDEX",
getNodeAttribute(stmt_id,"scanned_object",2));
Assert.assertEquals("BTREE",
getNodeAttribute(stmt_id,"scan_type",2));
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"visited_pages",2));
}
}
/**
* Verify XPLAIN style handling of a CONSTRAINT scan.
*
* This test runs a query against COUNTRIES using the
* COUNTRY_ISO_CODE constraint,
* and verifies the captured query plan statistics.
*/
public void testConstraintScan() throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement =
"SELECT region from countries where country = 'Cameroon'";
JDBC.assertSingleValueResultSet(s.executeQuery(selectStatement),
"Africa");
disableXplainStyle(s, true);
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets"),
new String[][] {
{"PROJECTION"}, {"ROWIDSCAN"}, {"CONSTRAINTSCAN"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select sp.scan_object_name, sp.scan_object_type, " +
"sp.scan_type, sp.isolation_level, " +
"sp.no_visited_rows, sp.no_qualified_rows, "+
"sp.no_visited_pages, " +
"rs.lock_mode, rs.lock_granularity, " +
"sp.no_fetched_columns, sp.bitset_of_fetched_columns " +
"from xpltest.sysxplain_scan_props sp " +
"join xpltest.sysxplain_resultsets rs " +
"on sp.scan_rs_id = rs.scan_rs_id " +
"where rs.op_identifier='CONSTRAINTSCAN'"),
new String[][] { {"COUNTRIES_UNQ_NM", "C", "BTREE",
"RC", "1", "1", "1", "SH", "R", "2", "ALL"} } );
/*
* This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(3,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|ROWIDSCAN|CONSTRAINTSCAN|",
getNodeName(stmt_id));
//for CONSTRAINTSCAN node test whether the scan related entries
//are exist and verify their values.
Assert.assertEquals("COUNTRIES_UNQ_NM",
getNodeAttribute(stmt_id,"scanned_object",2));
Assert.assertEquals("BTREE",
getNodeAttribute(stmt_id,"scan_type",2));
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"visited_pages",2));
}
}
/**
* Verify XPLAIN style handling of sort properties.
*
* This test runs a simple query against the COUNTRIES table and
* verifies that reasonable values are captured for the sort properties.
*/
public void testGroupBySortProps()
throws Exception
{
Statement s = createStatement();
enableXplainStyleWithTiming(s);
String selectStatement =
"select region, count(country) from countries group by region";
JDBC.assertUnorderedResultSet(s.executeQuery(selectStatement),
new String[][] {
{"Africa", "19"}, {"Asia", "15"},
{"Australia and New Zealand", "2"}, {"Caribbean", "10"},
{"Central America", "6"}, {"Central Asia", "4"},
{"Europe", "29"}, {"Middle East", "7"},
{"North Africa", "5"}, {"North America", "3"},
{"Pacific Islands", "3"}, {"South America", "11"} } );
disableXplainStyle(s, true);
// This statement is executed as a PROJECTION with a child GROUPBY
// with a child PROJECTION with a child TABLESCAN. The TABLESCAN
// has a corresponding SCAN_PROPS row, the GROUPBY has a
// corresponding SORT_PROPS row. In this test, we're mostly
// interested in the values in the SORT_PROPS row.
//
// The sort groups the 114 input rows into 12 groups. The rows
// are not provided in sort order as the input, and the sort
// is not a distinct aggregate.
//
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
JDBC.assertFullResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
"order by op_identifier"),
new String[][] {
{"GROUPBY"},{"PROJECTION"},{"PROJECTION"},{"TABLESCAN"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where scan_rs_id is not null"), "1");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
"where sort_rs_id is not null"), "1");
JDBC.assertFullResultSet(s.executeQuery(
"select s.stmt_text, rs.op_identifier," +
" srt.no_input_rows, srt.no_output_rows " +
" from xpltest.sysxplain_sort_props srt, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements s " +
" where rs.stmt_id = s.stmt_id and " +
" rs.sort_rs_id = srt.sort_rs_id"),
new String[][] {
{selectStatement, "GROUPBY", "114", "12"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select srt.sort_type, srt.no_input_rows, " +
" srt.no_output_rows, srt.no_merge_runs, " +
" srt.merge_run_details, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
"from xpltest.sysxplain_sort_props srt " +
"join xpltest.sysxplain_resultsets rs " +
"on srt.sort_rs_id = rs.sort_rs_id " +
"where rs.op_identifier='GROUPBY'"),
new String[][] {
{"IN","114","12",null, null, null,"N","N"} } );
verifySensibleStatementTimings(s);
verifySensibleResultSetTimings(s);
/* * This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|GROUPBY|PROJECTION|TABLESCAN|",
getNodeName(stmt_id));
//for GROUPBY node test whether the sort related entries
//are exist and verify their values.
Assert.assertEquals("IN",
getNodeAttribute(stmt_id,"sort_type",1));
Assert.assertEquals("12",
getNodeAttribute(stmt_id,"sorter_output",1));
}
}
/**
* Verify XPLAIN style handling of DISTINCT_AGGREGATE sort properties.
*
* This test runs a query which involves a distinct aggreagte and
* verifies that the DISTINCT_AGGREGATE field in SORT_PROPS gets set.
*/
public void testDistinctAggregateSortProps()
throws Exception
{
Statement s = createStatement();
enableXplainStyleWithTiming(s);
String selectStatement =
"select orig_airport, avg(distinct miles) from flights " +
"group by orig_airport";
// Execute the statement and throw away the results. We just want
// to look at the statistics.
s.executeQuery(selectStatement).close();
disableXplainStyle(s, true);
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_sort_props"), "1");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select srt.sort_type, srt.no_input_rows, " +
" srt.no_output_rows, srt.no_merge_runs, " +
" srt.merge_run_details, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
"from xpltest.sysxplain_sort_props srt " +
"join xpltest.sysxplain_resultsets rs " +
"on srt.sort_rs_id = rs.sort_rs_id " +
"where rs.op_identifier='GROUPBY'"),
new String[][] {
{"IN","10","10",null, null, null,"N","Y"} } );
verifySensibleStatementTimings(s);
verifySensibleResultSetTimings(s);
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
// This statement is executed as a PROJECTION with a child GROUPBY
// with a child PROJECTION with a child TABLESCAN.
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|GROUPBY|PROJECTION|TABLESCAN|",
getNodeName(stmt_id));
//for GROUPBY node test whether the sort related entries
//are exist and verify their values.
Assert.assertEquals("IN",
getNodeAttribute(stmt_id,"sort_type",1));
Assert.assertEquals("10",
getNodeAttribute(stmt_id,"sorter_output",1));
}
}
/**
* A simple test of an AGGREGATION result set.
*/
public void testAggregationResultSet()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement =
"select count(distinct region) from countries";
JDBC.assertSingleValueResultSet(s.executeQuery(selectStatement), "12");
disableXplainStyle(s, true);
// The above statement results in the query execution:
// PROJECTION(AGGREGATION(PROJECTION(TABLESCAN)))
//
// In this test case, we are interested in verifying that the
// content of the AGGREGATION resultset row is reasonable.
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'AGGREGATION'"),
new String[][] { {"AGGREGATION", "DISTINCT", "1"} } );
//
// FIXME -- why are INPUT_ROWS, SEEN_ROWS, FILTERED_ROWS, and
// RETURNED_ROWS apparently meaningless for an AGGREGATION RS?
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|AGGREGATION|PROJECTION|TABLESCAN|",
getNodeName(stmt_id));
//for AGGREGATION node test no_opens entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",1));
}
}
/**
* A simple test of an INSERT result set.
*/
public void testInsertResultSet()
throws Exception
{
Statement s = createStatement();
// Make sure we don't have the tuple to be inserted already:
s.executeUpdate("delete from AIRLINES");
enableXplainStyle(s);
String insertStatement =
"insert into AIRLINES values " +
"('AA','Amazonian Airways',0.18,0.03,0.5,1.5,20,10,5)";
int numRows = s.executeUpdate(insertStatement);
disableXplainStyle(s, true);
assertEquals("Failed to insert into AIRLINES", 1, numRows);
JDBC.assertUnorderedResultSet(s.executeQuery(
"select stmt_type, stmt_text " +
" from xpltest.sysxplain_statements"),
new String[][] { {"I",insertStatement} } );
//
// The above INSERT statement results in the query execution:
// INSERT(NORMALIZE(ROW))
//
// Verify some of the basic contents of the SYSXPLAIN_RESULTSETS
// rows for those result sets.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "3");
// FIXME -- why is lock_mode NULL? Shouldn't it be IX?
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, " +
" no_index_updates, lock_mode, " +
" lock_granularity, parent_rs_id, " +
" affected_rows, deferred_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'INSERT'"),
new String[][] {
{"INSERT",null,"1",null,"R", null,"1","N"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'NORMALIZE'"),
new String[][] {
{"NORMALIZE",null,"1","1","0","1"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'ROW'"),
new String[][] {
{"ROW",null,"1","0","0","1"} } );
/* * This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
insertStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(3,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("INSERT|NORMALIZE|ROW|",
getNodeName(stmt_id));
//for ROW node, test no_opens entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",1));
//for NORMALIZE node, test returned_rows entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"returned_rows",1));
}
}
/**
* A simple test of an UPDATE result set.
*/
public void testUpdateResultSet()
throws Exception
{
Statement s = createStatement();
s.executeUpdate("delete from AIRLINES");
String insertStatement =
"insert into AIRLINES values " +
"('AA','Amazonian Airways',0.18,0.03,0.5,1.5,20,10,5)";
int numRows = s.executeUpdate(insertStatement);
assertEquals("Failed to insert into AIRLINES", 1, numRows);
String updateStatement =
"update AIRLINES set economy_seats=23,business_seats=7 " +
" where airline='AA'";
enableXplainStyle(s);
numRows = s.executeUpdate(updateStatement);
assertEquals("Failed to update AIRLINES", 1, numRows);
disableXplainStyle(s, true);
JDBC.assertUnorderedResultSet(s.executeQuery(
"select stmt_type, stmt_text " +
" from xpltest.sysxplain_statements"),
new String[][] { {"U",updateStatement} } );
//
// The above UPDATE statement results in the query execution:
// UPDATE(PROJECTION(ROWIDSCAN(CONSTRAINTSCAN)))
// The CONSTRAINTSCAN has a SCAN_PROPS associated with it.
//
// Verify some of the basic contents of the SYSXPLAIN_RESULTSETS
// rows for those result sets.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
" where scan_rs_id is not null"), "CONSTRAINTSCAN");
// FIXME -- shouldn't lock_mode be 'IX'?
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" no_index_updates, lock_mode, " +
" lock_granularity, parent_rs_id, " +
" affected_rows, deferred_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'UPDATE'"),
new String[][] {
{"UPDATE",null,null,"0",null,"R",null,"1","N"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'PROJECTION'"),
new String[][] {
{"PROJECTION","2;","1","1","0","1"} } );
ResultSet myRS = s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'ROWIDSCAN'");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'ROWIDSCAN'"),
new String[][] {
{"ROWIDSCAN","(0),AIRLINES","1","1","0","1"} } );
//dumpResultSets(s);
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" lock_mode, lock_granularity, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'CONSTRAINTSCAN'"),
new String[][] {
{"CONSTRAINTSCAN","C: AIRLINES_PK",
"1","EX","R","1","0","1"} } );
// Verify that the CONSTRAINTSCAN is linked to a type=C scan_props
// row, which should have visited 1 row on 1 page, fetching 2 (ALL)
// columns, with non-null start_position, stop_position, and
// scan_qualifiers set to 'None'.
JDBC.assertUnorderedResultSet(s.executeQuery(
"select sp.scan_object_name, sp.scan_object_type, " +
"sp.scan_type, sp.isolation_level, " +
"sp.no_visited_rows, sp.no_qualified_rows, "+
"sp.no_visited_pages, sp.no_visited_deleted_rows, " +
"sp.no_fetched_columns, sp.bitset_of_fetched_columns, " +
"sp.scan_qualifiers " +
"from xpltest.sysxplain_scan_props sp " +
"join xpltest.sysxplain_resultsets rs " +
"on sp.scan_rs_id = rs.scan_rs_id " +
"where rs.op_identifier='CONSTRAINTSCAN'"),
new String[][] {
{"AIRLINES_PK", "C", "BTREE", "RC",
"1", "1", "1", "0", "2", "ALL", "None"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_scan_props " +
" where start_position is not null " +
" and stop_position is not null"), "1");
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
updateStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("UPDATE|PROJECTION|ROWIDSCAN|CONSTRAINTSCAN|",
getNodeName(stmt_id));
//for UPDATE node, test no_opens entry.
//Since it's null, there should be no such entry.
Assert.assertEquals("",
getNodeAttribute(stmt_id,"no_opens",0));
//for PROJECTION node, test returned_rows entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"returned_rows",1));
//for PROJECTION node, test no_opens entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",1));
//for ROWIDSCAN node, test returned_rows entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"returned_rows",2));
//for ROWIDSCAN node, test no_opens entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",2));
//for CONSTRAINTSCAN node, test scan_qualifiers entry
//is exist and verify its value.
Assert.assertEquals("None",
getNodeAttribute(stmt_id,"scan_qualifiers",3));
//for CONSTRAINTSCAN node, test visited_pages entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"visited_pages",3));
}
}
/**
* A simple test of an DELETE result set.
*/
public void testDeleteResultSet()
throws Exception
{
Statement s = createStatement();
s.executeUpdate("delete from AIRLINES");
String insertStatement =
"insert into AIRLINES values " +
"('AA','Amazonian Airways',0.18,0.03,0.5,1.5,20,10,5)";
int numRows = s.executeUpdate(insertStatement);
assertEquals("Failed to insert into AIRLINES", 1, numRows);
String deleteStatement = "delete from airlines where airline='AA'";
enableXplainStyle(s);
numRows = s.executeUpdate(deleteStatement);
assertEquals("Failed to delete from AIRLINES", 1, numRows);
disableXplainStyle(s, true);
JDBC.assertUnorderedResultSet(s.executeQuery(
"select stmt_type, stmt_text " +
" from xpltest.sysxplain_statements"),
new String[][] { {"D",deleteStatement} } );
//
// The above DELETE statement results in the query execution:
// DELETE(PROJECTION(PROJECTION(CONSTRAINTSCAN)))
// The CONSTRAINTSCAN has a SCAN_PROPS associated with it.
//
// We basically just check the DELETE result set, since we've
// checked the other result sets in other test cases.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select distinct op_identifier " +
" from xpltest.sysxplain_resultsets " +
" order by op_identifier"),
new String[][] {
{"CONSTRAINTSCAN"}, {"DELETE"}, {"PROJECTION"} } );
// FIXME -- shouldn't lock_mode be 'IX'?
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" no_index_updates, lock_mode, " +
" lock_granularity, parent_rs_id, " +
" affected_rows, deferred_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'DELETE'"),
new String[][] {
{"DELETE",null,null,"1",null,"R",null,"1","N"} } );
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
deleteStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("DELETE|PROJECTION|PROJECTION|CONSTRAINTSCAN|",
getNodeName(stmt_id));
//for DELETE node, test no_opens entry.
//Since it's null, there should be no such entry.
Assert.assertEquals("",
getNodeAttribute(stmt_id,"no_opens",0));
}
}
/**
* A simple test of a SORT result set.
*/
public void testSortResultSet()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement =
"select region from countries order by country";
s.executeQuery(selectStatement).close(); // Discard the results
disableXplainStyle(s, true);
// The above statement results in the query execution:
// PROJECTION(SORT(PROJECTION(TABLESCAN)))
//
// In this test case, we are interested in verifying that the
// content of the SORT resultset row and the content of
// the corresponding SORT_PROPS row are reasonable.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "4");
// FIXME -- why is RETURNED_ROWS 0 for this sort? Shouldn't it be 114?
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" input_rows, seen_rows, filtered_rows, " +
" returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'SORT'"),
new String[][] {
{"SORT", null, "1","114","0","0","0"} } );
JDBC.assertFullResultSet(s.executeQuery(
"select s.stmt_text, rs.op_identifier," +
" srt.no_input_rows, srt.no_output_rows, " +
" srt.sort_type, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
" from xpltest.sysxplain_sort_props srt, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements s " +
" where rs.stmt_id = s.stmt_id and " +
" rs.sort_rs_id = srt.sort_rs_id"),
new String[][] {
{selectStatement, "SORT", "114", "114", "IN", "N", "N", null}
} );
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
**/
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals("PROJECTION|SORT|PROJECTION|TABLESCAN|",
getNodeName(stmt_id));
//for SORT node test whether the sort related entries
//are exist and verify their values.
Assert.assertEquals("IN",
getNodeAttribute(stmt_id,"sort_type",1));
Assert.assertEquals("114",
getNodeAttribute(stmt_id,"sorter_output",1));
Assert.assertEquals("114",
getNodeAttribute(stmt_id,"input_rows",1));
}
}
/**
* A simple test of a UNION query.
*/
public void testUnionQuery()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement =
"select country from countries where region = 'Central America' "+
" union " +
"select country from countries where region = 'Africa'";
s.executeQuery(selectStatement).close(); // Discard the results
disableXplainStyle(s, true);
// The above statement results in the query execution:
// SORT(UNION(PROJECTION(TABLESCAN),PROJECTION(TABLESCAN)))
//
// Note that the UNION resultset has TWO child result sets.
//
// There is also 1 SORT_PROPS row, for the top-level SORT, and
// 2 SCAN_PROPS rows, for the two TABLESCAN nodes.
//
// We verify the overall structure of the result set nodes, and
// spot check a few of the fields.
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "6");
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets " +
" where parent_rs_id = " +
" (select rs_id from xpltest.sysxplain_resultsets" +
" where op_identifier = 'UNION')"), "2");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
"where scan_rs_id is not null"),
new String[][] { {"TABLESCAN"}, {"TABLESCAN"} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets " +
" where sort_rs_id is not null and parent_rs_id is null"),
"SORT");
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, seen_rows_right, filtered_rows, " +
" returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'UNION'"),
new String[][] {
{"UNION", "(2)", "1", "6","19","0","25"} } );
JDBC.assertFullResultSet(s.executeQuery(
"select s.stmt_text, rs.op_identifier," +
" srt.no_input_rows, srt.no_output_rows, " +
" srt.sort_type, srt.eliminate_duplicates, " +
" srt.in_sort_order, srt.distinct_aggregate " +
" from xpltest.sysxplain_sort_props srt, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_statements s " +
" where rs.stmt_id = s.stmt_id and " +
" rs.sort_rs_id = srt.sort_rs_id"),
new String[][] {
{selectStatement, "SORT", "25", "25", "IN", "Y", "N", null}
} );
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(6,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals(
"SORT|UNION|PROJECTION|TABLESCAN|PROJECTION|TABLESCAN|",
getNodeName(stmt_id));
//for SORT node test whether the sort related entries
//are exist and verify their values.
Assert.assertEquals("IN",
getNodeAttribute(stmt_id,"sort_type",0));
Assert.assertEquals("25",
getNodeAttribute(stmt_id,"sorter_output",0));
Assert.assertEquals("25",
getNodeAttribute(stmt_id,"input_rows",0));
//for UNION node test whether the related entries
//are exist and verify their values.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",1));
Assert.assertEquals("25",
getNodeAttribute(stmt_id,"returned_rows",1));
}
}
/**
* A simple test of capturing statistics for a DDL statement.
*/
public void testDDLCreateTable()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String ddlStatement =
"create table t1 (a int, b char(10), c timestamp)";
s.executeUpdate(ddlStatement);
// Don't run the PlanExporter tool on this statement. There is no
// result set graph recorded for DDL statements, so the PlanExporter
// tool will complain.
disableXplainStyle(s, false);
JDBC.assertUnorderedResultSet(s.executeQuery(
"select stmt_type, stmt_text " +
" from xpltest.sysxplain_statements"),
new String[][] { {"DDL",ddlStatement} } );
JDBC.assertSingleValueResultSet(s.executeQuery(
"select count(*) from xpltest.sysxplain_resultsets"), "0");
}
/**
* A simple test of the INDEX_KEY_OPT special situation.
*/
public void testMaxFromIndex()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement =
"select max(country_iso_code) from countries";
s.executeQuery(selectStatement).close();
disableXplainStyle(s, true);
// The above query is executed as
// PROJECTION(AGGREGATION(PROJECTION(LASTINDEXKEYSCAN)))
//
// The AGGREGATION resultset has index_key_opt = 'Y'.
//
// We verify some of the information in the result sets.
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" input_rows, seen_rows, filtered_rows, " +
" returned_rows, index_key_opt " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'AGGREGATION'"),
new String[][] {
{"AGGREGATION", null, "1", "0","0","0","0","Y"} } );
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, filtered_rows, returned_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'LASTINDEXKEYSCAN'"),
new String[][] {
{"LASTINDEXKEYSCAN", "I: COUNTRIES_PK, T: COUNTRIES",
"1", "1","0","1"} } );
// FIXME -- seems like the scan information for the LASTINDEXKEYSCAN
// is rather incomplete
// In fact, SCAN_TYPE seems to come back as NULL even though that
// column is not nullable?
JDBC.assertUnorderedResultSet(s.executeQuery(
"select sp.scan_object_name, sp.scan_object_type, " +
//"sp.scan_type, sp.isolation_level, " +
" sp.isolation_level, " +
"sp.no_visited_rows, sp.no_qualified_rows, "+
"sp.no_visited_pages, sp.no_visited_deleted_rows, " +
"sp.no_fetched_columns, sp.bitset_of_fetched_columns, " +
"sp.scan_qualifiers " +
"from xpltest.sysxplain_scan_props sp " +
"join xpltest.sysxplain_resultsets rs " +
"on sp.scan_rs_id = rs.scan_rs_id " +
"where rs.op_identifier='LASTINDEXKEYSCAN'"),
new String[][] {
{"COUNTRIES_PK", "I",
// null,
"RC", null, null, null, null, null, null, null} } );
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(4,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals(
"PROJECTION|AGGREGATION|PROJECTION|LASTINDEXKEYSCAN|",
getNodeName(stmt_id));
//for LASTINDEXKEYSCAN node, test no_opens entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",3));
//for LASTINDEXKEYSCAN node, test returned_rows entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"returned_rows",3));
//for LASTINDEXKEYSCAN node, test scanned_object entry
//is exist and verify its value.
Assert.assertEquals("COUNTRIES_PK",
getNodeAttribute(stmt_id,"scanned_object",3));
//for LASTINDEXKEYSCAN node, test visited_pages entry.
//Since it's null, there should be no entry in xml.
Assert.assertEquals("",
getNodeAttribute(stmt_id,"visited_pages",3));
//for LASTINDEXKEYSCAN node, test scan_qualifiers entry.
//Since it's null, there should be no entry in xml.
Assert.assertEquals("",
getNodeAttribute(stmt_id,"scan_qualifiers",3));
}
}
/**
* A simple test of a LEFT OUTER JOIN and EMPTY_RIGHT_ROWS values.
*/
public void testOuterJoin()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement =
"select f.orig_airport,c.country " +
" from flights f left outer join countries c " +
" on f.orig_airport = c.country_iso_code";
JDBC.assertUnorderedResultSet(s.executeQuery(selectStatement),
new String[][] {
{"ABQ",null},{"LAX",null},{"ABQ",null},{"PHX",null},
{"ABQ",null},{"OKC",null},{"AKL",null},{"HNL",null},
{"AKL",null},{"NRT",null}
});
disableXplainStyle(s, true);
// We should get a Nested Loop Outer Join which reads 10 rows
// from the left (SEEN_ROWS), constructs 10 EMPTY_RIGHT_ROWS,
// and has 10 RETURNED_ROWS.
//
// The overall statement is:
// PROJECTION(LONLJOIN(INDEXSCAN,ROWIDSCAN(CONSTRAINTSCAN)))
// The nested loop join is a scan of the orig_airport index,
// joining against probes into the countries_pk constraint-index.
JDBC.assertUnorderedResultSet(s.executeQuery(
"select op_identifier from xpltest.sysxplain_resultsets "),
new String[][] {
{"PROJECTION"}, {"LONLJOIN"}, {"INDEXSCAN"},
{"ROWIDSCAN"}, {"CONSTRAINTSCAN"} } );
// FIXME -- I think EMPTY_RIGHT_ROWS should be 10, not 0?
JDBC.assertFullResultSet(s.executeQuery(
"select op_identifier, op_details, no_opens, " +
" seen_rows, seen_rows_right, filtered_rows, " +
" returned_rows, empty_right_rows " +
"from xpltest.sysxplain_resultsets " +
"where op_identifier = 'LONLJOIN'"),
new String[][] {
{"LONLJOIN", "(1), Nested Loop Left Outer Join ResultSet",
"1", "10", "0", "0", "10", "0"} } );
/** This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(5,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals(
"PROJECTION|LONLJOIN|INDEXSCAN|ROWIDSCAN|CONSTRAINTSCAN|",
getNodeName(stmt_id));
//for LONLJOIN node, test no_opens entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"no_opens",1));
//for LONLJOIN node, test returned_rows entry
//is exist and verify its value.
Assert.assertEquals("10",
getNodeAttribute(stmt_id,"returned_rows",1));
}
}
/**
* A simple test to verify that startPosition and stopPosition work.
*/
public void testScanPositions()
throws Exception
{
Statement s = createStatement();
// Try several different syntaxes of index scans, to see what we get:
String []searches = {
"select * from flights where dest_airport = 'ABQ'",
"select * from flights where dest_airport > 'HNL'",
"select * from flights where dest_airport < 'HNL'",
"select * from flights where dest_airport between 'H' and 'J'",
"select * from flights where dest_airport like 'AB%'",
};
String []startPrefixes = {
">= on first 1 column(s).",
"> on first 1 column(s).",
"None",
">= on first 1 column(s).",
">= on first 1 column(s).",
};
String []stopPrefixes = {
"> on first 1 column(s).",
"None",
">= on first 1 column(s).",
"> on first 1 column(s).",
">= on first 1 column(s).",
};
enableXplainStyle(s);
for (int i = 0; i < searches.length; i++)
s.executeQuery(searches[i]).close();
disableXplainStyle(s, true);
ResultSet rs = s.executeQuery(
"select s.stmt_text, sp.start_position, sp.stop_position " +
" from xpltest.sysxplain_statements s, " +
" xpltest.sysxplain_resultsets rs, " +
" xpltest.sysxplain_scan_props sp " +
" where s.stmt_id = rs.stmt_id and " +
" rs.scan_rs_id = sp.scan_rs_id");
int matchedStatements = 0;
while (rs.next())
{
String sText = rs.getString("stmt_text");
String startPos = rs.getString("start_position").trim();
String stopPos = rs.getString("stop_position").trim();
boolean foundStmt = false;
for (int i = 0; i < searches.length; i++)
{
if (searches[i].equals(sText))
{
matchedStatements++;
foundStmt = true;
if (! startPos.startsWith(startPrefixes[i]))
fail("Expected start_position for statement '" +
searches[i] + "' to start with '" +
startPrefixes[i] + "', but it actually was " +
startPos);
if (! stopPos.startsWith(stopPrefixes[i]))
fail("Expected stop_position for statement '" +
searches[i] + "' to start with '" +
stopPrefixes[i] + "', but it actually was " +
stopPos);
break;
}
}
assertTrue("Found unexpected statement " + sText, foundStmt);
}
assertEquals("Captured wrong number of statements?",
searches.length, matchedStatements);
/* * This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
* This test specially checks the behaviour of the tool
* when the query executed contains special XML characters
* such as <,> etc.
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_ids, because files are generated using
//stmt_id as their name.
String[] stmt_id = getStmtIDArray(s, searches.length);
for(int i=0;i<stmt_id.length;i++){
//testing the <statement> element
Assert.assertEquals(
searches[i],
readStatement(stmt_id[i]));
}
}
}
/**
* A simple test of a non-zero value for numDeletedRowsVisited.
*/
public void testScanDeletedRows()
throws Exception
{
Statement s = createStatement();
enableXplainStyle(s);
String selectStatement = "select x from t";
JDBC.assertUnorderedResultSet(s.executeQuery(selectStatement),
new String[][] { {"1"},{"2"},{"4"} });
disableXplainStyle(s, true);
// There should be a CONSTRAINTSCAN result set with a SCAN PROPS
// which indicates that we visited 1 deleted row while scanning
// the index.
JDBC.assertFullResultSet(s.executeQuery(
"select sp.scan_object_type, " +
"sp.scan_type, sp.isolation_level, " +
"sp.no_visited_rows, sp.no_qualified_rows, "+
"sp.no_visited_pages, sp.no_visited_deleted_rows, " +
"sp.no_fetched_columns, sp.bitset_of_fetched_columns, " +
"sp.scan_qualifiers " +
"from xpltest.sysxplain_scan_props sp " +
"join xpltest.sysxplain_resultsets rs " +
"on sp.scan_rs_id = rs.scan_rs_id " +
"where rs.op_identifier='CONSTRAINTSCAN'"),
new String[][] {
{"C","BTREE","RC","4","3","1","1","1","{0}","None"}});
/* * This test is added by DERBY-4587, to verify the content
* of the XML file generated by the new tool, PlanExporter.
*
* */
if(XML.classpathMeetsXMLReqs()){
//getting the stmt_id, because files are generated using
//stmt_id as their name.
String stmt_id = getStmtID(s);
//testing the <statement> element
Assert.assertEquals(
selectStatement,
readStatement(stmt_id));
//testing the count of <node> elements
Assert.assertEquals(1,
countNode(stmt_id));
//testing the root <node> element's name attributes
Assert.assertEquals(
"CONSTRAINTSCAN|",
getNodeName(stmt_id));
//for CONSTRAINTSCAN node, test scan_type entry
//is exist and verify its value.
Assert.assertEquals("BTREE",
getNodeAttribute(stmt_id,"scan_type",0));
//for CONSTRAINTSCAN node, test visited_pages entry
//is exist and verify its value.
Assert.assertEquals("1",
getNodeAttribute(stmt_id,"visited_pages",0));
//for CONSTRAINTSCAN node, test visited_pages entry
//is exist and verify its value.
Assert.assertEquals("None",
getNodeAttribute(stmt_id,"scan_qualifiers",0));
}
}
/**
* Test that run-time statistics are recorded even if the query has a
* predicate that always evaluates to false. Before DERBY-6268, the logic
* that saved the statistics would be short-circuited in such queries.
*/
public void testAlwaysEmptyResultSet() throws Exception {
// Execute a query with a predicate that is known at compile time to
// evaluate to false. The predicate FALSE should do.
String sql = "select * from sysibm.sysdummy1 where false -- DERBY-6268";
Statement s = createStatement();
enableXplainStyle(s);
JDBC.assertEmpty(s.executeQuery(sql));
disableXplainStyle(s, true);
// Now, see if we find the query among the recorded statements.
PreparedStatement ps = prepareStatement(
"select * from xpltest.sysxplain_statements where stmt_text = ?");
ps.setString(1, sql);
JDBC.assertDrainResults(ps.executeQuery(), 1);
}
/**
* A simple test of table with the wrong 'shape'.
*/
public void testTableNotValid()
throws SQLException
{
Statement s = createStatement();
for (int i = 0; i < tableNames.length; i++)
if (hasTable(s, "XPLTEST", tableNames[i]))
s.executeUpdate("drop table xpltest."+tableNames[i]);
s.executeUpdate("create table xpltest.sysxplain_resultsets(a int)");
try
{
enableXplainStyle(s);
fail("Expected an error from table with wrong shape");
}
catch (SQLException e)
{
assertSQLState("Expected 42X14 error for missing column",
"42X14", e);
if (e.getMessage().indexOf("RS_ID") < 0)
fail("Expected message about missing column RS_ID, not " +
e.getMessage());
} finally {
// Drop the created table if this testcase is not run as the last.
s.executeUpdate("drop table xpltest.sysxplain_resultsets");
}
}
/**
* Test that queries that contain non-ASCII characters are not garbled
* by the plan exporter tool. Regression test case for DERBY-4902.
*/
public void testPlanExporterEncoding() throws Exception {
String table = "D4902_BL\u00C5B\u00C6R";
String queryText = "SELECT * FROM " + table;
Statement s = createStatement();
s.execute("CREATE TABLE " + table + "(X INT)");
enableXplainStyle(s);
JDBC.assertEmpty(s.executeQuery(queryText));
disableXplainStyle(s, true);
ResultSet rs = s.executeQuery(
"SELECT STMT_ID, STMT_TEXT FROM XPLTEST.SYSXPLAIN_STATEMENTS");
assertTrue(rs.next());
String stmtId = rs.getString(1);
assertEquals(queryText, rs.getString(2));
assertFalse(rs.next());
rs.close();
if (XML.classpathMeetsXMLReqs()) {
assertEquals(queryText, readStatement(stmtId));
}
}
/**
* Test that queries that contain characters with a special meaning in
* XML are not garbled by the plan exporter tool. Regression test case
* for DERBY-4903.
*/
public void testPlanExporterHandlingSpecialCharacters() throws Exception{
String table =
"A \"double\" and 'single' quoted table name " +
"with some other special characters, like <, > and &";
String escapedTable = JDBC.escape(table);
String queryText =
"SELECT * FROM " + escapedTable +
" WHERE X < LENGTH('a & b') AND X > 1";
Statement s = createStatement();
s.execute("CREATE TABLE " + escapedTable + "(X INT)");
enableXplainStyle(s);
JDBC.assertEmpty(s.executeQuery(queryText));
disableXplainStyle(s, true);
ResultSet rs = s.executeQuery(
"SELECT STMT_ID, STMT_TEXT FROM XPLTEST.SYSXPLAIN_STATEMENTS");
assertTrue(rs.next());
String stmtId = rs.getString(1);
assertEquals(queryText, rs.getString(2));
assertFalse(rs.next());
rs.close();
if (XML.classpathMeetsXMLReqs()) {
assertEquals(queryText, readStatement(stmtId));
//testing the root <node> element's name attributes
Assert.assertEquals(
"TABLESCAN|",
getNodeName(stmtId));
//for TABLESCAN node, test scanned_object entry
//is exist and verify its value correctly replaced
//by special XML symbols.
assertEquals(table, getNodeAttribute(stmtId, "scanned_object", 0));
}
}
/**
* Abstract class for a thread executing a database action (i.e. a query).
*/
private static abstract class AbstractMTThread
implements Runnable {
protected final Connection con;
/** Duration of the run. */
protected final long runTime;
/** Tells how many times the action has been performed. */
protected int count;
/** If an error is raised when performing the action. */
protected Throwable error;
protected AbstractMTThread(Connection con, long runTime) {
this.con = con;
this.runTime = runTime;
}
public int getActionCount() {
return count;
}
public boolean failed() {
return error != null;
}
public Throwable getError() {
return error;
}
}
/**
* Thread for selecting from the COUNTRIES table in a loop, with the XPLAIN-
* functionality enabled.
*/
private static class MTSimpleSelect
extends AbstractMTThread {
public MTSimpleSelect(Connection con, long runTime) {
super(con, runTime);
}
/**
* Selects from the COUNTRIES table in a loop.
*/
public void run() {
Random rand = new Random();
final long start = System.currentTimeMillis();
try {
Statement s = con.createStatement();
enableXplainStyleWithTiming(s);
PreparedStatement ps = con.prepareStatement(
"SELECT country from countries WHERE " +
"region = 'Central America'");
while (System.currentTimeMillis() - start < runTime) {
JDBC.assertUnorderedResultSet(ps.executeQuery(),
new String[][] {
{"Belize"}, {"Costa Rica"}, {"El Salvador"},
{"Guatemala"}, {"Honduras"}, {"Nicaragua"} } );
count++;
try {
Thread.sleep(rand.nextInt(50));
} catch (InterruptedException ie) {
// Ignore
}
}
// Don't disable XPLAIN here, as it takes a long time due to the
// high number of recorded plans - these are currently being
// exported to disk as XML in the disable-method.
// This connection is going away anyway.
//disableXplainStyle(s);
s.close();
ps.close();
} catch (Throwable t) {
// Signal failure
error = t;
} finally {
try {
con.rollback();
con.close();
} catch (SQLException sqle) {
// Ignore
}
}
}
}
/**
* Thread for invalidating the COUNTRIES table in a loop.
*/
private static class MTSimpleInvalidate
extends AbstractMTThread {
public MTSimpleInvalidate(Connection con, long runTime) {
super(con, runTime);
}
/**
* Invalidates the COUNTRIES table continuously by updating the
* associated index statistics. Loops until the run-time is up.
*/
public void run() {
final long start = System.currentTimeMillis();
try {
PreparedStatement ps = con.prepareStatement(
"call SYSCS_UTIL.SYSCS_UPDATE_STATISTICS(?, ?, ?)");
ps.setString(1, "APP");
ps.setString(2, "COUNTRIES");
ps.setNull(3, Types.VARCHAR);
while (System.currentTimeMillis() - start < runTime) {
ps.execute();
count++;
}
ps.close();
} catch (Throwable t) {
// Signal failure
error = t;
} finally {
try {
con.rollback();
con.close();
} catch (SQLException sqle) {
// Ignore
}
}
}
}
}
|