1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926
|
#ifndef ITEM_CMPFUNC_INCLUDED
#define ITEM_CMPFUNC_INCLUDED
/* Copyright (c) 2000, 2015, Oracle and/or its affiliates.
Copyright (c) 2009, 2022, MariaDB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
/* compare and test functions */
#include "item_func.h" /* Item_int_func, Item_bool_func */
#include "item.h"
#include "opt_rewrite_date_cmp.h"
extern Item_result item_cmp_type(Item_result a,Item_result b);
inline Item_result item_cmp_type(const Item *a, const Item *b)
{
return item_cmp_type(a->cmp_type(), b->cmp_type());
}
inline Item_result item_cmp_type(Item_result a, const Item *b)
{
return item_cmp_type(a, b->cmp_type());
}
class Item_bool_func2;
class Arg_comparator;
typedef int (Arg_comparator::*arg_cmp_func)();
typedef int (*Item_field_cmpfunc)(Item *f1, Item *f2, void *arg);
class Arg_comparator: public Sql_alloc
{
Item **a, **b;
const Type_handler *m_compare_handler;
CHARSET_INFO *m_compare_collation;
arg_cmp_func func;
Item_func_or_sum *owner;
bool set_null; // TRUE <=> set owner->null_value
Arg_comparator *comparators; // used only for compare_row()
double precision;
/* Fields used in DATE/DATETIME comparison. */
Item *a_cache, *b_cache; // Cached values of a and b items
// when one of arguments is NULL.
int set_cmp_func(THD *thd, Item_func_or_sum *owner_arg,
const Type_handler *compare_handler,
Item **a1, Item **a2);
int compare_not_null_values(longlong val1, longlong val2)
{
if (set_null)
owner->null_value= false;
if (val1 < val2) return -1;
if (val1 == val2) return 0;
return 1;
}
NativeBuffer<STRING_BUFFER_USUAL_SIZE> m_native1, m_native2;
public:
/* Allow owner function to use string buffers. */
String value1, value2;
Arg_comparator():
m_compare_handler(&type_handler_null),
m_compare_collation(&my_charset_bin),
set_null(TRUE), comparators(0),
a_cache(0), b_cache(0) {};
Arg_comparator(Item **a1, Item **a2): a(a1), b(a2),
m_compare_handler(&type_handler_null),
m_compare_collation(&my_charset_bin),
set_null(TRUE), comparators(0),
a_cache(0), b_cache(0) {};
public:
bool set_cmp_func_for_row_arguments(THD *thd);
bool set_cmp_func_row(THD *thd);
bool set_cmp_func_string(THD *thd);
bool set_cmp_func_time(THD *thd);
bool set_cmp_func_datetime(THD *thd);
bool set_cmp_func_native(THD *thd);
bool set_cmp_func_int(THD *thd);
bool set_cmp_func_real(THD *thd);
bool set_cmp_func_decimal(THD *thd);
inline int set_cmp_func(THD *thd, Item_func_or_sum *owner_arg,
const Type_handler *compare_handler,
Item **a1, Item **a2, bool set_null_arg)
{
set_null= set_null_arg;
return set_cmp_func(thd, owner_arg, compare_handler, a1, a2);
}
int set_cmp_func(THD *thd, Item_func_or_sum *owner_arg,
Item **a1, Item **a2, bool set_null_arg)
{
Item *tmp_args[2]= { *a1, *a2 };
Type_handler_hybrid_field_type tmp;
if (tmp.aggregate_for_comparison(owner_arg->func_name_cstring(),
tmp_args, 2, false))
return 1;
return set_cmp_func(thd, owner_arg, tmp.type_handler(),
a1, a2, set_null_arg);
}
inline int compare() { return (this->*func)(); }
int compare_string(); // compare args[0] & args[1]
int compare_real(); // compare args[0] & args[1]
int compare_decimal(); // compare args[0] & args[1]
int compare_int_signed(); // compare args[0] & args[1]
int compare_int_signed_unsigned();
int compare_int_unsigned_signed();
int compare_int_unsigned();
int compare_row(); // compare args[0] & args[1]
int compare_e_string(); // compare args[0] & args[1]
int compare_e_real(); // compare args[0] & args[1]
int compare_e_decimal(); // compare args[0] & args[1]
int compare_e_int(); // compare args[0] & args[1]
int compare_e_int_diff_signedness();
int compare_e_row(); // compare args[0] & args[1]
int compare_real_fixed();
int compare_e_real_fixed();
int compare_datetime();
int compare_e_datetime();
int compare_time();
int compare_e_time();
int compare_native();
int compare_e_native();
int compare_json_str_basic(Item *j, Item *s);
int compare_json_str();
int compare_str_json();
int compare_e_json_str_basic(Item *j, Item *s);
int compare_e_json_str();
int compare_e_str_json();
void min_max_update_field_native(THD *thd, Field *field, Item *item,
int cmp_sign);
Item** cache_converted_constant(THD *thd, Item **value, Item **cache,
const Type_handler *type);
inline bool is_owner_equal_func()
{
return (owner->type() == Item::FUNC_ITEM &&
((Item_func*)owner)->functype() == Item_func::EQUAL_FUNC);
}
const Type_handler *compare_type_handler() const { return m_compare_handler; }
Item_result compare_type() const { return m_compare_handler->cmp_type(); }
CHARSET_INFO *compare_collation() const { return m_compare_collation; }
Arg_comparator *subcomparators() const { return comparators; }
void cleanup()
{
delete [] comparators;
comparators= 0;
}
friend class Item_func;
friend class Item_bool_rowready_func2;
};
class SEL_ARG;
struct KEY_PART;
class Item_bool_func :public Item_int_func,
public Type_cmp_attributes
{
protected:
/*
Build a SEL_TREE for a simple predicate
@param param PARAM from SQL_SELECT::test_quick_select
@param field field in the predicate
@param value constant in the predicate
@return Pointer to the tree built tree
*/
virtual SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value)
{
DBUG_ENTER("Item_bool_func::get_func_mm_tree");
DBUG_ASSERT(0);
DBUG_RETURN(0);
}
/*
Return the full select tree for "field_item" and "value":
- a single SEL_TREE if the field is not in a multiple equality, or
- a conjunction of all SEL_TREEs for all fields from
the same multiple equality with "field_item".
*/
SEL_TREE *get_full_func_mm_tree(RANGE_OPT_PARAM *param,
Item_field *field_item, Item *value);
/**
Test if "item" and "value" are suitable for the range optimization
and get their full select tree.
"Suitable" means:
- "item" is a field or a field reference
- "value" is NULL (e.g. WHERE field IS NULL), or
"value" is an unexpensive item (e.g. WHERE field OP value)
@param item - the argument that is checked to be a field
@param value - the other argument
@returns - NULL if the arguments are not suitable for the range optimizer.
@returns - the full select tree if the arguments are suitable.
*/
SEL_TREE *get_full_func_mm_tree_for_args(RANGE_OPT_PARAM *param,
Item *item, Item *value)
{
DBUG_ENTER("Item_bool_func::get_full_func_mm_tree_for_args");
Item *field= item->real_item();
if (field->type() == Item::FIELD_ITEM && !field->const_item() &&
(!value || !value->is_expensive()))
DBUG_RETURN(get_full_func_mm_tree(param, (Item_field *) field, value));
DBUG_RETURN(NULL);
}
SEL_TREE *get_mm_parts(RANGE_OPT_PARAM *param, Field *field,
Item_func::Functype type, Item *value);
SEL_TREE *get_ne_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *lt_value, Item *gt_value);
virtual SEL_ARG *get_mm_leaf(RANGE_OPT_PARAM *param, Field *field,
KEY_PART *key_part,
Item_func::Functype type, Item *value);
void raise_note_if_key_become_unused(THD *thd, const Item_args &old_args);
public:
Item_bool_func(THD *thd): Item_int_func(thd) {}
Item_bool_func(THD *thd, Item *a): Item_int_func(thd, a) {}
Item_bool_func(THD *thd, Item *a, Item *b): Item_int_func(thd, a, b) {}
Item_bool_func(THD *thd, Item *a, Item *b, Item *c): Item_int_func(thd, a, b, c) {}
Item_bool_func(THD *thd, List<Item> &list): Item_int_func(thd, list) { }
Item_bool_func(THD *thd, Item_bool_func *item) :Item_int_func(thd, item) {}
const Type_handler *type_handler() const override
{ return &type_handler_bool; }
const Type_handler *fixed_type_handler() const override
{ return &type_handler_bool; }
CHARSET_INFO *compare_collation() const override { return NULL; }
longlong val_int() override final
{
DBUG_ASSERT(!is_cond());
return val_bool();
}
bool val_bool() override= 0;
bool fix_length_and_dec(THD *thd) override { decimals=0; max_length=1; return FALSE; }
decimal_digits_t decimal_precision() const override { return 1; }
bool need_parentheses_in_default() override { return true; }
bool with_sargable_substr(Item_field **field = NULL, int *value_idx = NULL) const;
};
/**
Abstract Item class, to represent <code>X IS [NOT] (TRUE | FALSE)</code>
boolean predicates.
*/
class Item_func_truth : public Item_bool_func
{
public:
bool val_bool() override;
bool fix_length_and_dec(THD *thd) override;
void print(String *str, enum_query_type query_type) override;
enum precedence precedence() const override { return CMP_PRECEDENCE; }
bool count_sargable_conds(void *arg) override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
SEL_ARG *get_mm_leaf(RANGE_OPT_PARAM *param, Field *field,
KEY_PART *key_part,
Item_func::Functype type, Item *value) override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override;
virtual Item *negated_item(THD *thd) const = 0;
Item *neg_transformer(THD *thd) override
{
return negated_item(thd);
}
protected:
Item_func_truth(THD *thd, Item *a, bool a_value, bool a_affirmative):
Item_bool_func(thd, a), value(a_value), affirmative(a_affirmative)
{}
~Item_func_truth() = default;
private:
/**
True for <code>X IS [NOT] TRUE</code>,
false for <code>X IS [NOT] FALSE</code> predicates.
*/
const bool value;
/**
True for <code>X IS Y</code>, false for <code>X IS NOT Y</code> predicates.
*/
const bool affirmative;
};
/**
This Item represents a <code>X IS TRUE</code> boolean predicate.
*/
class Item_func_istrue : public Item_func_truth
{
public:
Item_func_istrue(THD *thd, Item *a): Item_func_truth(thd, a, true, true) {}
~Item_func_istrue() = default;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("istrue") };
return name;
}
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
Item *negated_item(THD *thd) const override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_istrue>(thd, this); }
};
/**
This Item represents a <code>X IS NOT TRUE</code> boolean predicate.
*/
class Item_func_isnottrue : public Item_func_truth
{
public:
Item_func_isnottrue(THD *thd, Item *a):
Item_func_truth(thd, a, true, false) {}
~Item_func_isnottrue() = default;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("isnottrue") };
return name;
}
Item *negated_item(THD *thd) const override;
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
bool find_not_null_fields(table_map allowed) override { return false; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_isnottrue>(thd, this); }
bool eval_not_null_tables(void *) override
{ not_null_tables_cache= 0; return false; }
};
/**
This Item represents a <code>X IS FALSE</code> boolean predicate.
*/
class Item_func_isfalse : public Item_func_truth
{
public:
Item_func_isfalse(THD *thd, Item *a): Item_func_truth(thd, a, false, true) {}
~Item_func_isfalse() = default;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("isfalse") };
return name;
}
Item *negated_item(THD *thd) const override;
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_isfalse>(thd, this); }
};
/**
This Item represents a <code>X IS NOT FALSE</code> boolean predicate.
*/
class Item_func_isnotfalse : public Item_func_truth
{
public:
Item_func_isnotfalse(THD *thd, Item *a):
Item_func_truth(thd, a, false, false) {}
~Item_func_isnotfalse() = default;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("isnotfalse") };
return name;
}
Item *negated_item(THD *thd) const override;
bool find_not_null_fields(table_map allowed) override { return false; }
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_isnotfalse>(thd, this); }
bool eval_not_null_tables(void *) override
{ not_null_tables_cache= 0; return false; }
};
class Item_cache;
#define UNKNOWN (-1)
/*
Item_in_optimizer(left_expr, Item_in_subselect(...))
Item_in_optimizer is used to wrap an instance of Item_in_subselect. This
class does the following:
- Evaluate the left expression and store it in Item_cache_* object (to
avoid re-evaluating it many times during subquery execution)
- Shortcut the evaluation of "NULL IN (...)" to NULL in the cases where we
don't care if the result is NULL or FALSE.
NOTE
It is not quite clear why the above listed functionality should be
placed into a separate class called 'Item_in_optimizer'.
*/
class Item_in_optimizer: public Item_bool_func
{
protected:
Item_cache *cache;
Item *expr_cache;
/*
Stores the value of "NULL IN (SELECT ...)" for uncorrelated subqueries:
UNKNOWN - "NULL in (SELECT ...)" has not yet been evaluated
FALSE - result is FALSE
TRUE - result is NULL
*/
int result_for_null_param;
public:
Item_in_optimizer(THD *thd, Item *a, Item *b):
Item_bool_func(thd, a, b), cache(0), expr_cache(0),
result_for_null_param(UNKNOWN)
{
with_flags|= item_with_t::SUBQUERY;
}
bool fix_fields(THD *, Item **) override;
bool fix_left(THD *thd);
table_map not_null_tables() const override { return 0; }
bool is_null() override;
bool val_bool() override;
void cleanup() override;
enum Functype functype() const override { return IN_OPTIMIZER_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<in_optimizer>") };
return name;
}
Item_cache **get_cache() { return &cache; }
Item *transform(THD *thd, Item_transformer transformer, uchar *arg) override;
Item *expr_cache_insert_transformer(THD *thd, uchar *unused) override;
bool is_expensive_processor(void *arg) override;
bool is_expensive() override;
void set_join_tab_idx(uint8 join_tab_idx_arg) override
{ args[1]->set_join_tab_idx(join_tab_idx_arg); }
void get_cache_parameters(List<Item> ¶meters) override;
bool eval_not_null_tables(void *opt_arg) override;
bool find_not_null_fields(table_map allowed) override;
void fix_after_pullout(st_select_lex *new_parent, Item **ref,
bool merge) override;
bool invisible_mode();
bool walk(Item_processor processor, bool walk_subquery, void *arg) override;
void reset_cache() { cache= NULL; }
void print(String *str, enum_query_type query_type) override;
void restore_first_argument();
Item* get_wrapped_in_subselect_item()
{ return args[1]; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_in_optimizer>(thd, this); }
enum precedence precedence() const override { return args[1]->precedence(); }
};
/*
Functions and operators with two arguments that can use range optimizer.
*/
class Item_bool_func2 :public Item_bool_func
{ /* Bool with 2 string args */
protected:
void add_key_fields_optimize_op(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables, bool equal_func);
public:
Item_bool_func2(THD *thd, Item *a, Item *b):
Item_bool_func(thd, a, b) { }
bool is_null() override { return MY_TEST(args[0]->is_null() || args[1]->is_null()); }
COND *remove_eq_conds(THD *thd, Item::cond_result *cond_value,
bool top_level) override;
bool count_sargable_conds(void *arg) override;
/*
Specifies which result type the function uses to compare its arguments.
This method is used in equal field propagation.
*/
virtual const Type_handler *compare_type_handler() const
{
/*
Have STRING_RESULT by default, which means the function compares
val_str() results of the arguments. This is suitable for Item_func_like
and for Item_func_spatial_rel.
Note, Item_bool_rowready_func2 overrides this default behaviour.
*/
return &type_handler_varchar;
}
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override
{
DBUG_ENTER("Item_bool_func2::get_mm_tree");
DBUG_ASSERT(arg_count == 2);
SEL_TREE *ftree= get_full_func_mm_tree_for_args(param, args[0], args[1]);
if (!ftree)
ftree= Item_func::get_mm_tree(param, cond_ptr);
DBUG_RETURN(ftree);
}
};
/**
A class for functions and operators that can use the range optimizer and
have a reverse function/operator that can also use the range optimizer,
so this condition:
WHERE value OP field
can be optimized as equivalent to:
WHERE field REV_OP value
This class covers:
- scalar comparison predicates: <, <=, =, <=>, >=, >
- MBR and precise spatial relation predicates (e.g. SP_TOUCHES(x,y))
For example:
WHERE 10 > field
can be optimized as:
WHERE field < 10
*/
class Item_bool_func2_with_rev :public Item_bool_func2
{
protected:
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override
{
DBUG_ENTER("Item_bool_func2_with_rev::get_func_mm_tree");
Item_func::Functype func_type=
(value != arguments()[0]) ? functype() : rev_functype();
DBUG_RETURN(get_mm_parts(param, field, func_type, value));
}
public:
Item_bool_func2_with_rev(THD *thd, Item *a, Item *b):
Item_bool_func2(thd, a, b) { }
virtual enum Functype rev_functype() const= 0;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override
{
DBUG_ENTER("Item_bool_func2_with_rev::get_mm_tree");
DBUG_ASSERT(arg_count == 2);
SEL_TREE *ftree;
/*
Even if get_full_func_mm_tree_for_args(param, args[0], args[1]) will not
return a range predicate it may still be possible to create one
by reversing the order of the operands. Note that this only
applies to predicates where both operands are fields. Example: A
query of the form
WHERE t1.a OP t2.b
In this case, args[0] == t1.a and args[1] == t2.b.
When creating range predicates for t2,
get_full_func_mm_tree_for_args(param, args[0], args[1])
will return NULL because 'field' belongs to t1 and only
predicates that applies to t2 are of interest. In this case a
call to get_full_func_mm_tree_for_args() with reversed operands
may succeed.
*/
if (!(ftree= get_full_func_mm_tree_for_args(param, args[0], args[1])) &&
!(ftree= get_full_func_mm_tree_for_args(param, args[1], args[0])) &&
!(ftree= Item_func::get_mm_tree(param, cond_ptr)))
{
Item_field *field= NULL;
int value_idx= -1;
if (with_sargable_substr(&field, &value_idx))
DBUG_RETURN(get_full_func_mm_tree_for_args(param, field, args[value_idx]));
}
DBUG_RETURN(ftree);
}
};
class Item_bool_rowready_func2 :public Item_bool_func2_with_rev
{
protected:
Arg_comparator cmp;
bool check_arguments() const override
{
return check_argument_types_like_args0();
}
public:
Item_bool_rowready_func2(THD *thd, Item *a, Item *b):
Item_bool_func2_with_rev(thd, a, b), cmp(tmp_arg, tmp_arg + 1)
{ }
Sql_mode_dependency value_depends_on_sql_mode() const override;
void print(String *str, enum_query_type query_type) override
{
Item_func::print_op(str, query_type);
}
enum precedence precedence() const override { return CMP_PRECEDENCE; }
Item *neg_transformer(THD *thd) override;
virtual Item *negated_item(THD *thd);
Item *propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
Item_args::propagate_equal_fields(thd,
Context(ANY_SUBST,
cmp.compare_type_handler(),
compare_collation()),
cond);
return this;
}
bool fix_length_and_dec(THD *thd) override;
bool fix_length_and_dec_generic(THD *thd,
const Type_handler *compare_handler)
{
DBUG_ASSERT(args == tmp_arg);
return cmp.set_cmp_func(thd, this, compare_handler,
tmp_arg, tmp_arg + 1, true/*set_null*/);
}
int set_cmp_func(THD *thd)
{
DBUG_ASSERT(args == tmp_arg);
return cmp.set_cmp_func(thd, this, tmp_arg, tmp_arg + 1, true/*set_null*/);
}
CHARSET_INFO *compare_collation() const override
{ return cmp.compare_collation(); }
const Type_handler *compare_type_handler() const override
{
return cmp.compare_type_handler();
}
Arg_comparator *get_comparator() { return &cmp; }
void cleanup() override
{
Item_bool_func2::cleanup();
cmp.cleanup();
}
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override
{
return add_key_fields_optimize_op(join, key_fields, and_level,
usable_tables, sargables, false);
}
Item *do_build_clone(THD *thd) const override
{
Item_bool_rowready_func2 *clone=
(Item_bool_rowready_func2 *) Item_func::do_build_clone(thd);
if (clone)
{
clone->cmp.comparators= 0;
}
return clone;
}
Item* vcol_subst_transformer(THD *thd, uchar *arg) override;
};
/**
XOR inherits from Item_bool_func because it is not optimized yet.
Later, when XOR is optimized, it needs to inherit from
Item_cond instead. See WL#5800.
*/
class Item_func_xor :public Item_bool_func
{
public:
Item_func_xor(THD *thd, Item *i1, Item *i2): Item_bool_func(thd, i1, i2) {}
enum Functype functype() const override { return XOR_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("xor") };
return name;
}
enum precedence precedence() const override { return XOR_PRECEDENCE; }
void print(String *str, enum_query_type query_type) override
{ Item_func::print_op(str, query_type); }
bool val_bool() override;
bool find_not_null_fields(table_map allowed) override { return false; }
Item *neg_transformer(THD *thd) override;
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond) override
{
Item_args::propagate_equal_fields(thd, Context_boolean(), cond);
return this;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_xor>(thd, this); }
};
class Item_func_not :public Item_bool_func
{
public:
Item_func_not(THD *thd, Item *a): Item_bool_func(thd, a) {}
bool val_bool() override;
enum Functype functype() const override { return NOT_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("not") };
return name;
}
bool find_not_null_fields(table_map allowed) override { return false; }
enum precedence precedence() const override { return NEG_PRECEDENCE; }
Item *neg_transformer(THD *thd) override;
bool fix_fields(THD *, Item **) override;
void print(String *str, enum_query_type query_type) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_not>(thd, this); }
};
class Item_maxmin_subselect;
/*
trigcond<param>(arg) ::= param? arg : TRUE
The class Item_func_trig_cond is used for guarded predicates
which are employed only for internal purposes.
A guarded predicate is an object consisting of an a regular or
a guarded predicate P and a pointer to a boolean guard variable g.
A guarded predicate P/g is evaluated to true if the value of the
guard g is false, otherwise it is evaluated to the same value that
the predicate P: val(P/g)= g ? val(P):true.
Guarded predicates allow us to include predicates into a conjunction
conditionally. Currently they are utilized for pushed down predicates
in queries with outer join operations.
In the future, probably, it makes sense to extend this class to
the objects consisting of three elements: a predicate P, a pointer
to a variable g and a firing value s with following evaluation
rule: val(P/g,s)= g==s? val(P) : true. It will allow us to build only
one item for the objects of the form P/g1/g2...
Objects of this class are built only for query execution after
the execution plan has been already selected. That's why this
class needs only val_int out of generic methods.
Current uses of Item_func_trig_cond objects:
- To wrap selection conditions when executing outer joins
- To wrap condition that is pushed down into subquery
*/
class Item_func_trig_cond: public Item_bool_func
{
bool *trig_var;
public:
Item_func_trig_cond(THD *thd, Item *a, bool *f): Item_bool_func(thd, a)
{ trig_var= f; }
bool val_bool() override { return *trig_var ? args[0]->val_bool() : true; }
enum Functype functype() const override { return TRIG_COND_FUNC; };
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("trigcond") };
return name;
}
bool const_item() const override { return FALSE; }
bool *get_trig_var() { return trig_var; }
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_trig_cond>(thd, this); }
};
class Item_func_not_all :public Item_func_not
{
/* allow to check presence of values in max/min optimization */
Item_sum_min_max *test_sum_item;
Item_maxmin_subselect *test_sub_item;
public:
bool show;
Item_func_not_all(THD *thd, Item *a):
Item_func_not(thd, a), test_sum_item(0), test_sub_item(0), show(0)
{}
table_map not_null_tables() const override { return 0; }
bool val_bool() override;
enum Functype functype() const override { return NOT_ALL_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<not>") };
return name;
}
enum precedence precedence() const override
{ return show ? Item_func::precedence() : args[0]->precedence(); }
bool fix_fields(THD *thd, Item **ref) override
{ return Item_func::fix_fields(thd, ref);}
void print(String *str, enum_query_type query_type) override;
void set_sum_test(Item_sum_min_max *item) { test_sum_item= item; test_sub_item= 0; };
void set_sub_test(Item_maxmin_subselect *item) { test_sub_item= item; test_sum_item= 0;};
bool empty_underlying_subquery();
Item *neg_transformer(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_not_all>(thd, this); }
};
class Item_func_nop_all :public Item_func_not_all
{
public:
Item_func_nop_all(THD *thd, Item *a): Item_func_not_all(thd, a) {}
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<nop>") };
return name;
}
Item *neg_transformer(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_nop_all>(thd, this); }
};
class Item_func_eq :public Item_bool_rowready_func2
{
public:
Item_func_eq(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b),
in_equality_no(UINT_MAX)
{}
bool val_bool() override;
enum Functype functype() const override { return EQ_FUNC; }
enum Functype rev_functype() const override { return EQ_FUNC; }
cond_result eq_cmp_result() const override { return COND_TRUE; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("=") };
return name;
}
Item *negated_item(THD *thd) override;
COND *build_equal_items(THD *thd, COND_EQUAL *inherited,
bool link_item_fields,
COND_EQUAL **cond_equal_ref) override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override
{
return add_key_fields_optimize_op(join, key_fields, and_level,
usable_tables, sargables, true);
}
bool check_equality(THD *thd, COND_EQUAL *cond, List<Item> *eq_list) override;
/*
- If this equality is created from the subquery's IN-equality:
number of the item it was created from, e.g. for
(a,b) IN (SELECT c,d ...) a=c will have in_equality_no=0,
and b=d will have in_equality_no=1.
- Otherwise, UINT_MAX
*/
uint in_equality_no;
uint exists2in_reserved_items() override { return 1; };
friend class Arg_comparator;
Item* date_conds_transformer(THD *thd, uchar *arg) override
{ return do_date_conds_transformation(thd, this); }
Item* varchar_upper_cmp_transformer(THD *thd, uchar *arg) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_eq>(thd, this); }
Item *do_build_clone(THD *thd) const override;
};
class Item_func_equal final :public Item_bool_rowready_func2
{
public:
Item_func_equal(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b) {}
bool val_bool() override;
bool fix_length_and_dec(THD *thd) override;
table_map not_null_tables() const override { return 0; }
bool find_not_null_fields(table_map allowed) override { return false; }
enum Functype functype() const override { return EQUAL_FUNC; }
enum Functype rev_functype() const override { return EQUAL_FUNC; }
cond_result eq_cmp_result() const override { return COND_TRUE; }
bool is_null() override { return false; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<=>") };
return name;
}
Item *neg_transformer(THD *thd) override { return 0; }
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override
{
return add_key_fields_optimize_op(join, key_fields, and_level,
usable_tables, sargables, true);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_equal>(thd, this); }
};
class Item_func_ge :public Item_bool_rowready_func2
{
public:
Item_func_ge(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b) {};
bool val_bool() override;
enum Functype functype() const override { return GE_FUNC; }
enum Functype rev_functype() const override { return LE_FUNC; }
cond_result eq_cmp_result() const override { return COND_TRUE; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN(">=") };
return name;
}
Item *negated_item(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ge>(thd, this); }
Item* date_conds_transformer(THD *thd, uchar *arg) override
{ return do_date_conds_transformation(thd, this); }
};
class Item_func_gt :public Item_bool_rowready_func2
{
public:
Item_func_gt(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b) {};
bool val_bool() override;
enum Functype functype() const override { return GT_FUNC; }
enum Functype rev_functype() const override { return LT_FUNC; }
cond_result eq_cmp_result() const override { return COND_FALSE; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN(">") };
return name;
}
Item *negated_item(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_gt>(thd, this); }
Item* date_conds_transformer(THD *thd, uchar *arg) override
{ return do_date_conds_transformation(thd, this); }
};
class Item_func_le :public Item_bool_rowready_func2
{
public:
Item_func_le(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b) {};
bool val_bool() override;
enum Functype functype() const override { return LE_FUNC; }
enum Functype rev_functype() const override { return GE_FUNC; }
cond_result eq_cmp_result() const override { return COND_TRUE; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<=") };
return name;
}
Item *negated_item(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_le>(thd, this); }
Item* date_conds_transformer(THD *thd, uchar *arg) override
{ return do_date_conds_transformation(thd, this); }
};
class Item_func_lt :public Item_bool_rowready_func2
{
public:
Item_func_lt(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b) {}
bool val_bool() override;
enum Functype functype() const override { return LT_FUNC; }
enum Functype rev_functype() const override { return GT_FUNC; }
cond_result eq_cmp_result() const override { return COND_FALSE; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<") };
return name;
}
Item *negated_item(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_lt>(thd, this); }
Item* date_conds_transformer(THD *thd, uchar *arg) override
{ return do_date_conds_transformation(thd, this); }
};
class Item_func_ne :public Item_bool_rowready_func2
{
protected:
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
public:
Item_func_ne(THD *thd, Item *a, Item *b):
Item_bool_rowready_func2(thd, a, b) {}
bool val_bool() override;
enum Functype functype() const override { return NE_FUNC; }
enum Functype rev_functype() const override { return NE_FUNC; }
cond_result eq_cmp_result() const override { return COND_FALSE; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<>") };
return name;
}
Item *negated_item(THD *thd) override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields, uint *and_level,
table_map usable_tables, SARGABLE_PARAM **sargables) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ne>(thd, this); }
};
/*
The class Item_func_opt_neg is defined to factor out the functionality
common for the classes Item_func_between and Item_func_in. The objects
of these classes can express predicates or there negations.
The alternative approach would be to create pairs Item_func_between,
Item_func_notbetween and Item_func_in, Item_func_notin.
*/
class Item_func_opt_neg :public Item_bool_func
{
protected:
/*
The data type handler that will be used for comparison.
Data type handlers of all arguments are mixed to here.
*/
Type_handler_hybrid_field_type m_comparator;
/*
The collation that will be used for comparison in case
when m_compare_type is STRING_RESULT.
*/
DTCollation cmp_collation;
public:
bool negated; /* <=> the item represents NOT <func> */
public:
Item_func_opt_neg(THD *thd, Item *a, Item *b, Item *c):
Item_bool_func(thd, a, b, c), negated(0) {}
Item_func_opt_neg(THD *thd, List<Item> &list):
Item_bool_func(thd, list), negated(0) {}
public:
Item *neg_transformer(THD *thd) override
{
negated= !negated;
return this;
}
bool eq(const Item *item, bool binary_cmp) const override;
CHARSET_INFO *compare_collation() const override
{
return cmp_collation.collation;
}
Item *propagate_equal_fields(THD *, const Context &,
COND_EQUAL *) override= 0;
};
class Item_func_between :public Item_func_opt_neg
{
/*
If the types of the arguments to BETWEEN permit, then:
WHERE const1 BETWEEN expr2 AND field1
can be optimized as if it was just:
WHERE const1 <= field1
as expr2 could be an arbitrary expression. More generally,
this optimization is permitted if aggregation for comparison
for three expressions (const1,const2,field1) and for two
expressions (const1,field1) return the same type handler.
@param [IN] field_item - This is a field from the right side
of the BETWEEN operator.
*/
bool can_optimize_range_const(Item_field *field_item) const;
protected:
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
bool val_int_cmp_int_finalize(longlong value, longlong a, longlong b);
public:
String value0,value1,value2;
Item_func_between(THD *thd, Item *a, Item *b, Item *c):
Item_func_opt_neg(thd, a, b, c) { }
bool val_bool() override
{
DBUG_ASSERT(fixed());
return m_comparator.type_handler()->Item_func_between_val_int(this);
}
enum Functype functype() const override { return BETWEEN; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("between") };
return name;
}
enum precedence precedence() const override { return BETWEEN_PRECEDENCE; }
bool fix_length_and_dec(THD *thd) override;
bool fix_length_and_dec_string(THD *)
{
return agg_arg_charsets_for_comparison(cmp_collation, args, 3);
}
bool fix_length_and_dec_temporal(THD *);
bool fix_length_and_dec_numeric(THD *);
void print(String *str, enum_query_type query_type) override;
bool eval_not_null_tables(void *opt_arg) override;
bool find_not_null_fields(table_map allowed) override;
void fix_after_pullout(st_select_lex *new_parent, Item **ref, bool merge)
override;
bool count_sargable_conds(void *arg) override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
Item_args::propagate_equal_fields(thd,
Context(ANY_SUBST,
m_comparator.type_handler(),
compare_collation()),
cond);
return this;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_between>(thd, this); }
longlong val_int_cmp_string();
longlong val_int_cmp_datetime();
longlong val_int_cmp_time();
longlong val_int_cmp_native();
longlong val_int_cmp_int();
longlong val_int_cmp_real();
longlong val_int_cmp_decimal();
Item* vcol_subst_transformer(THD *thd, uchar *arg) override;
};
class Item_func_strcmp :public Item_long_func
{
bool check_arguments() const override
{ return check_argument_types_can_return_str(0, 2); }
String value1, value2;
DTCollation cmp_collation;
public:
Item_func_strcmp(THD *thd, Item *a, Item *b):
Item_long_func(thd, a, b) {}
longlong val_int() override;
decimal_digits_t decimal_precision() const override { return 1; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("strcmp") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
if (agg_arg_charsets_for_comparison(cmp_collation, args, 2))
return TRUE;
fix_char_length(2); // returns "1" or "0" or "-1"
return FALSE;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_strcmp>(thd, this); }
};
struct interval_range
{
Item_result type;
double dbl;
my_decimal dec;
};
class Item_func_interval :public Item_long_func
{
Item_row *row;
bool use_decimal_comparison;
interval_range *intervals;
bool check_arguments() const override
{
return check_argument_types_like_args0();
}
public:
Item_func_interval(THD *thd, Item_row *a):
Item_long_func(thd, a), row(a), intervals(0)
{ }
longlong val_int() override;
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("interval") };
return name;
}
decimal_digits_t decimal_precision() const override { return 2; }
void print(String *str, enum_query_type query_type) override
{
str->append(func_name_cstring());
print_args(str, 0, query_type);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_interval>(thd, this); }
};
class Item_func_coalesce :public Item_func_case_expression
{
public:
Item_func_coalesce(THD *thd, Item *a, Item *b):
Item_func_case_expression(thd, a, b) {}
Item_func_coalesce(THD *thd, List<Item> &list):
Item_func_case_expression(thd, list) {}
double real_op() override;
longlong int_op() override;
String *str_op(String *) override;
my_decimal *decimal_op(my_decimal *) override;
bool date_op(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override;
bool time_op(THD *thd, MYSQL_TIME *ltime) override;
bool native_op(THD *thd, Native *to) override;
bool fix_length_and_dec(THD *thd) override
{
update_nullability_post_fix_fields();
if (aggregate_for_result(func_name_cstring(), args, arg_count, true))
return TRUE;
fix_attributes(args, arg_count);
return FALSE;
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("coalesce") };
return name;
}
table_map not_null_tables() const override { return 0; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_coalesce>(thd, this); }
};
/*
Case abbreviations that aggregate its result field type by two arguments:
IFNULL(arg1, arg2)
IF(switch, arg1, arg2)
NVL2(switch, arg1, arg2)
*/
class Item_func_case_abbreviation2 :public Item_func_case_expression
{
protected:
bool fix_length_and_dec2(Item **items)
{
if (aggregate_for_result(func_name_cstring(), items, 2, true))
return TRUE;
fix_attributes(items, 2);
return FALSE;
}
void cache_type_info(const Item *source, bool maybe_null_arg)
{
Type_std_attributes::set(source);
set_handler(source->type_handler());
set_maybe_null(maybe_null_arg);
}
bool fix_length_and_dec2_eliminate_null(Item **items)
{
// Let IF(cond, expr, NULL) and IF(cond, NULL, expr) inherit type from expr.
if (items[0]->type() == NULL_ITEM)
{
cache_type_info(items[1], true);
// If both arguments are NULL, make resulting type BINARY(0).
if (items[1]->type() == NULL_ITEM)
set_handler(&type_handler_string);
}
else if (items[1]->type() == NULL_ITEM)
{
cache_type_info(items[0], true);
}
else
{
if (fix_length_and_dec2(items))
return TRUE;
}
return FALSE;
}
public:
Item_func_case_abbreviation2(THD *thd, Item *a, Item *b):
Item_func_case_expression(thd, a, b) { }
Item_func_case_abbreviation2(THD *thd, Item *a, Item *b, Item *c):
Item_func_case_expression(thd, a, b, c) { }
};
class Item_func_ifnull :public Item_func_case_abbreviation2
{
public:
Item_func_ifnull(THD *thd, Item *a, Item *b):
Item_func_case_abbreviation2(thd, a, b) {}
double real_op() override;
longlong int_op() override;
String *str_op(String *str) override;
my_decimal *decimal_op(my_decimal *) override;
bool date_op(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override;
bool time_op(THD *thd, MYSQL_TIME *ltime) override;
bool native_op(THD *thd, Native *to) override;
bool fix_length_and_dec(THD *thd) override
{
update_nullability_post_fix_fields();
if (Item_func_case_abbreviation2::fix_length_and_dec2(args))
return TRUE;
return FALSE;
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("ifnull") };
return name;
}
table_map not_null_tables() const override { return 0; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ifnull>(thd, this); }
};
/**
Case abbreviations that have a switch argument and
two return arguments to choose from. Returns the value
of either of the two return arguments depending on the switch argument value.
IF(switch, arg1, arg2)
NVL(switch, arg1, arg2)
*/
class Item_func_case_abbreviation2_switch: public Item_func_case_abbreviation2
{
protected:
virtual Item *find_item() const= 0;
public:
Item_func_case_abbreviation2_switch(THD *thd, Item *a, Item *b, Item *c)
:Item_func_case_abbreviation2(thd, a, b, c)
{ }
bool date_op(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{
Datetime_truncation_not_needed dt(thd, find_item(), fuzzydate);
return (null_value= dt.copy_to_mysql_time(ltime, mysql_timestamp_type()));
}
bool time_op(THD *thd, MYSQL_TIME *ltime) override
{
return (null_value= Time(find_item()).copy_to_mysql_time(ltime));
}
longlong int_op() override
{
return val_int_from_item(find_item());
}
double real_op() override
{
return val_real_from_item(find_item());
}
my_decimal *decimal_op(my_decimal *decimal_value) override
{
return val_decimal_from_item(find_item(), decimal_value);
}
String *str_op(String *str) override
{
return val_str_from_item(find_item(), str);
}
bool native_op(THD *thd, Native *to) override
{
return val_native_with_conversion_from_item(thd, find_item(), to,
type_handler());
}
};
class Item_func_if :public Item_func_case_abbreviation2_switch
{
protected:
Item *find_item() const override
{ return args[0]->val_bool() ? args[1] : args[2]; }
public:
Item_func_if(THD *thd, Item *a, Item *b, Item *c):
Item_func_case_abbreviation2_switch(thd, a, b, c)
{}
bool fix_fields(THD *, Item **) override;
bool fix_length_and_dec(THD *thd) override
{
return fix_length_and_dec2_eliminate_null(args + 1);
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("if") };
return name;
}
bool eval_not_null_tables(void *opt_arg) override;
void fix_after_pullout(st_select_lex *new_parent, Item **ref, bool merge)
override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_if>(thd, this); }
private:
void cache_type_info(Item *source);
};
class Item_func_nvl2 :public Item_func_case_abbreviation2_switch
{
protected:
Item *find_item() const override
{ return args[0]->is_null() ? args[2] : args[1]; }
public:
Item_func_nvl2(THD *thd, Item *a, Item *b, Item *c):
Item_func_case_abbreviation2_switch(thd, a, b, c)
{}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("nvl2") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
return fix_length_and_dec2_eliminate_null(args + 1);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_nvl2>(thd, this); }
};
class Item_func_nullif :public Item_func_case_expression
{
Arg_comparator cmp;
/*
NULLIF(a,b) is a short for:
CASE WHEN a=b THEN NULL ELSE a END
The left "a" is for comparison purposes.
The right "a" is for return value purposes.
These are two different "a" and they can be replaced to different items.
The left "a" is in a comparison and can be replaced by:
- Item_func::convert_const_compared_to_int_field()
- agg_item_set_converter() in set_cmp_func()
- cache_converted_constant() in set_cmp_func()
Both "a"s are subject to equal fields propagation and can be replaced by:
- Item_field::propagate_equal_fields(ANY_SUBST) for the left "a"
- Item_field::propagate_equal_fields(IDENTITY_SUBST) for the right "a"
*/
Item_cache *m_cache;
int compare();
void reset_first_arg_if_needed()
{
if (arg_count == 3 && args[0] != args[2])
args[0]= args[2];
}
Item *m_arg0;
public:
/*
Here we pass three arguments to the parent constructor, as NULLIF
is a three-argument function, it needs two copies of the first argument
(see above). But fix_fields() will be confused if we try to prepare the
same Item twice (if args[0]==args[2]), so we hide the third argument
(decrementing arg_count) and copy args[2]=args[0] again after fix_fields().
See also Item_func_nullif::fix_length_and_dec().
*/
Item_func_nullif(THD *thd, Item *a, Item *b):
Item_func_case_expression(thd, a, b, a),
m_cache(NULL),
m_arg0(NULL)
{ arg_count--; }
void cleanup() override
{
Item_func_hybrid_field_type::cleanup();
arg_count= 2; // See the comment to the constructor
}
bool date_op(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override;
bool time_op(THD *thd, MYSQL_TIME *ltime) override;
double real_op() override;
longlong int_op() override;
String *str_op(String *str) override;
my_decimal *decimal_op(my_decimal *) override;
bool native_op(THD *thd, Native *to) override;
bool fix_length_and_dec(THD *thd) override;
bool walk(Item_processor processor, bool walk_subquery, void *arg) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("nullif") };
return name;
}
void print(String *str, enum_query_type query_type) override;
void split_sum_func(THD *thd, Ref_ptr_array ref_pointer_array,
List<Item> &fields, uint flags) override;
void update_used_tables() override;
table_map not_null_tables() const override { return 0; }
bool is_null() override;
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
Context cmpctx(ANY_SUBST, cmp.compare_type_handler(),
cmp.compare_collation());
const Item *old0= args[0];
args[0]->propagate_equal_fields_and_change_item_tree(thd, cmpctx,
cond, &args[0]);
args[1]->propagate_equal_fields_and_change_item_tree(thd, cmpctx,
cond, &args[1]);
/*
MDEV-9712 Performance degradation of nested NULLIF
ANY_SUBST is more relaxed than IDENTITY_SUBST.
If ANY_SUBST did not change args[0],
then we can skip propagation for args[2].
*/
if (old0 != args[0])
args[2]->propagate_equal_fields_and_change_item_tree(thd,
Context_identity(),
cond, &args[2]);
return this;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_nullif>(thd, this); }
Item *derived_field_transformer_for_having(THD *thd, uchar *arg) override
{ reset_first_arg_if_needed(); return this; }
Item *derived_field_transformer_for_where(THD *thd, uchar *arg) override
{ reset_first_arg_if_needed(); return this; }
Item *grouping_field_transformer_for_where(THD *thd, uchar *arg) override
{ reset_first_arg_if_needed(); return this; }
Item *in_subq_field_transformer_for_where(THD *thd, uchar *arg) override
{ reset_first_arg_if_needed(); return this; }
Item *in_subq_field_transformer_for_having(THD *thd, uchar *arg) override
{ reset_first_arg_if_needed(); return this; }
};
/* Functions to handle the optimized IN */
/* A vector of values of some type */
class in_vector :public Sql_alloc
{
public:
char *base;
uint size;
qsort_cmp2 compare;
CHARSET_INFO *collation;
uint count;
uint used_count;
in_vector() = default;
in_vector(THD *thd, uint elements, uint element_length, qsort_cmp2 cmp_func,
CHARSET_INFO *cmp_coll)
:base((char*) thd_calloc(thd, elements * element_length)),
size(element_length), compare(cmp_func), collation(cmp_coll),
count(elements), used_count(elements) {}
virtual ~in_vector() = default;
/*
Store an Item value at the given position.
@returns false - the Item was not NULL, and the conversion from the
Item data type to the cmp_item data type went without
errors
@returns true - the Item was NULL, or data type conversion returned NULL
*/
virtual bool set(uint pos, Item *item)=0;
virtual uchar *get_value(Item *item)=0;
void sort()
{
my_qsort2(base,used_count,size,compare,(void*)collation);
}
bool find(Item *item);
/*
Create an instance of Item_{type} (e.g. Item_decimal) constant object
which type allows it to hold an element of this vector without any
conversions.
The purpose of this function is to be able to get elements of this
vector in form of Item_xxx constants without creating Item_xxx object
for every array element you get (i.e. this implements "FlyWeight" pattern)
*/
virtual Item* create_item(THD *thd) { return NULL; }
/*
Store the value at position #pos into provided item object
SYNOPSIS
value_to_item()
pos Index of value to store
item Constant item to store value into. The item must be of the same
type that create_item() returns.
*/
virtual void value_to_item(uint pos, Item *item) { }
/* Compare values number pos1 and pos2 for equality */
bool compare_elems(uint pos1, uint pos2)
{
return MY_TEST(compare(const_cast<charset_info_st *>(collation),
base + pos1 * size, base + pos2 * size));
}
virtual const Type_handler *type_handler() const= 0;
};
class in_string :public in_vector
{
char buff[STRING_BUFFER_USUAL_SIZE];
String tmp;
class Item_string_for_in_vector: public Item_string
{
public:
Item_string_for_in_vector(THD *thd, CHARSET_INFO *cs):
Item_string(thd, cs)
{ }
void set_value(const String *str)
{
str_value= *str;
collation.set(str->charset());
}
};
public:
in_string(THD *thd, uint elements, qsort_cmp2 cmp_func, CHARSET_INFO *cs);
~in_string();
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
Item* create_item(THD *thd) override;
void value_to_item(uint pos, Item *item) override
{
String *str=((String*) base)+pos;
Item_string_for_in_vector *to= (Item_string_for_in_vector*) item;
to->set_value(str);
}
const Type_handler *type_handler() const override
{ return &type_handler_varchar; }
};
class in_longlong :public in_vector
{
protected:
/*
Here we declare a temporary variable (tmp) of the same type as the
elements of this vector. tmp is used in finding if a given value is in
the list.
*/
struct packed_longlong
{
longlong val;
longlong unsigned_flag; // Use longlong, not bool, to preserve alignment
} tmp;
public:
in_longlong(THD *thd, uint elements);
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
Item* create_item(THD *thd) override;
void value_to_item(uint pos, Item *item) override
{
((Item_int*) item)->value= ((packed_longlong*) base)[pos].val;
((Item_int*) item)->unsigned_flag= (bool)
((packed_longlong*) base)[pos].unsigned_flag;
}
const Type_handler *type_handler() const override
{ return &type_handler_slonglong; }
friend int cmp_longlong(void *cmp_arg, const void *a, const void *b);
};
class in_timestamp :public in_vector
{
Timestamp_or_zero_datetime tmp;
public:
in_timestamp(THD *thd, uint elements);
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
Item* create_item(THD *thd) override;
void value_to_item(uint pos, Item *item) override;
const Type_handler *type_handler() const override
{ return &type_handler_timestamp2; }
};
/*
Class to represent a vector of constant DATE/DATETIME values.
*/
class in_temporal :public in_longlong
{
public:
/* Cache for the left item. */
in_temporal(THD *thd, uint elements)
:in_longlong(thd, elements) {};
Item *create_item(THD *thd) override;
void value_to_item(uint pos, Item *item) override
{
packed_longlong *val= reinterpret_cast<packed_longlong*>(base)+pos;
Item_datetime *dt= static_cast<Item_datetime*>(item);
dt->set_from_packed(val->val, type_handler()->mysql_timestamp_type());
}
friend int cmp_longlong(void *cmp_arg, const void *a, const void *b);
};
class in_datetime :public in_temporal
{
public:
in_datetime(THD *thd, uint elements)
:in_temporal(thd, elements)
{}
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
const Type_handler *type_handler() const override
{ return &type_handler_datetime2; }
};
class in_time :public in_temporal
{
public:
in_time(THD *thd, uint elements)
:in_temporal(thd, elements)
{}
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
const Type_handler *type_handler() const override
{ return &type_handler_time2; }
};
class in_double :public in_vector
{
double tmp;
public:
in_double(THD *thd, uint elements);
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
Item *create_item(THD *thd) override;
void value_to_item(uint pos, Item *item) override
{
((Item_float*)item)->value= ((double*) base)[pos];
}
const Type_handler *type_handler() const override
{ return &type_handler_double; }
};
class in_decimal :public in_vector
{
my_decimal val;
public:
in_decimal(THD *thd, uint elements);
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
Item *create_item(THD *thd) override;
void value_to_item(uint pos, Item *item) override
{
my_decimal *dec= ((my_decimal *)base) + pos;
Item_decimal *item_dec= (Item_decimal*)item;
item_dec->set_decimal_value(dec);
}
const Type_handler *type_handler() const override
{ return &type_handler_newdecimal; }
};
/*
** Classes for easy comparing of non const items
*/
class cmp_item :public Sql_alloc
{
public:
CHARSET_INFO *cmp_charset;
cmp_item() { cmp_charset= &my_charset_bin; }
virtual ~cmp_item() = default;
virtual void store_value(Item *item)= 0;
/**
@returns result (TRUE, FALSE or UNKNOWN) of
"stored argument's value <> item's value"
*/
virtual int cmp(Item *item)= 0;
virtual int cmp_not_null(const Value *value)= 0;
// for optimized IN with row
virtual int compare(const cmp_item *item) const= 0;
virtual cmp_item *make_same(THD *thd)= 0;
/*
Store a scalar or a ROW value into "this".
@returns false - the value (or every component in case of ROW) was
not NULL and the data type conversion went without errors.
@returns true - the value (or some of its components) was NULL, or the
data type conversion of a not-NULL value returned NULL.
*/
virtual bool store_value_by_template(THD *thd, cmp_item *tmpl, Item *item)=0;
};
/// cmp_item which stores a scalar (i.e. non-ROW).
class cmp_item_scalar : public cmp_item
{
protected:
bool m_null_value; ///< If stored value is NULL
bool store_value_by_template(THD *thd, cmp_item *tmpl, Item *item) override
{
store_value(item);
return m_null_value;
}
};
class cmp_item_string : public cmp_item_scalar
{
protected:
String *value_res;
public:
cmp_item_string () = default;
cmp_item_string (CHARSET_INFO *cs) { cmp_charset= cs; }
void set_charset(CHARSET_INFO *cs) { cmp_charset= cs; }
friend class cmp_item_sort_string;
friend class cmp_item_sort_string_in_static;
};
class cmp_item_sort_string :public cmp_item_string
{
protected:
char value_buff[STRING_BUFFER_USUAL_SIZE];
String value;
public:
cmp_item_sort_string():
cmp_item_string() {}
cmp_item_sort_string(CHARSET_INFO *cs):
cmp_item_string(cs),
value(value_buff, sizeof(value_buff), cs) {}
void store_value(Item *item) override
{
value_res= item->val_str(&value);
m_null_value= item->null_value;
// Make sure to cache the result String inside "value"
if (value_res && value_res != &value)
{
if (value.copy(*value_res))
value.set("", 0, item->collation.collation);
value_res= &value;
}
}
int cmp_not_null(const Value *val) override
{
DBUG_ASSERT(!val->is_null());
DBUG_ASSERT(val->is_string());
return sortcmp(value_res, &val->m_string, cmp_charset) != 0;
}
int cmp(Item *arg) override
{
char buff[STRING_BUFFER_USUAL_SIZE];
String tmp(buff, sizeof(buff), cmp_charset), *res= arg->val_str(&tmp);
if (m_null_value || arg->null_value)
return UNKNOWN;
if (value_res && res)
return sortcmp(value_res, res, cmp_charset) != 0;
else if (!value_res && !res)
return FALSE;
else
return TRUE;
}
int compare(const cmp_item *ci) const override
{
cmp_item_string *l_cmp= (cmp_item_string *) ci;
return sortcmp(value_res, l_cmp->value_res, cmp_charset);
}
cmp_item *make_same(THD *thd) override;
void set_charset(CHARSET_INFO *cs)
{
cmp_charset= cs;
value.set_buffer_if_not_allocated(value_buff, sizeof(value_buff), cs);
}
};
class cmp_item_int : public cmp_item_scalar
{
longlong value;
public:
cmp_item_int() = default; /* Remove gcc warning */
void store_value(Item *item) override
{
value= item->val_int();
m_null_value= item->null_value;
}
int cmp_not_null(const Value *val) override
{
DBUG_ASSERT(!val->is_null());
DBUG_ASSERT(val->is_longlong());
return value != val->value.m_longlong;
}
int cmp(Item *arg) override
{
const bool rc= value != arg->val_int();
return (m_null_value || arg->null_value) ? UNKNOWN : rc;
}
int compare(const cmp_item *ci) const override
{
cmp_item_int *l_cmp= (cmp_item_int *)ci;
return (value < l_cmp->value) ? -1 : ((value == l_cmp->value) ? 0 : 1);
}
cmp_item *make_same(THD *thd) override;
};
/*
Compare items in the DATETIME context.
*/
class cmp_item_temporal: public cmp_item_scalar
{
protected:
longlong value;
public:
cmp_item_temporal() = default;
int compare(const cmp_item *ci) const override;
};
class cmp_item_datetime: public cmp_item_temporal
{
public:
cmp_item_datetime()
:cmp_item_temporal()
{ }
void store_value(Item *item) override
{
value= item->val_datetime_packed(current_thd);
m_null_value= item->null_value;
}
int cmp_not_null(const Value *val) override;
int cmp(Item *arg) override;
cmp_item *make_same(THD *thd) override;
};
class cmp_item_time: public cmp_item_temporal
{
public:
cmp_item_time()
:cmp_item_temporal()
{ }
void store_value(Item *item) override
{
value= item->val_time_packed(current_thd);
m_null_value= item->null_value;
}
int cmp_not_null(const Value *val) override;
int cmp(Item *arg) override;
cmp_item *make_same(THD *thd) override;
};
class cmp_item_timestamp: public cmp_item_scalar
{
Timestamp_or_zero_datetime_native m_native;
public:
cmp_item_timestamp() :cmp_item_scalar() { }
void store_value(Item *item) override;
int cmp_not_null(const Value *val) override;
int cmp(Item *arg) override;
int compare(const cmp_item *ci) const override;
cmp_item *make_same(THD *thd) override;
};
class cmp_item_real : public cmp_item_scalar
{
double value;
public:
cmp_item_real() = default; /* Remove gcc warning */
void store_value(Item *item) override
{
value= item->val_real();
m_null_value= item->null_value;
}
int cmp_not_null(const Value *val) override
{
DBUG_ASSERT(!val->is_null());
DBUG_ASSERT(val->is_double());
return value != val->value.m_double;
}
int cmp(Item *arg) override
{
const bool rc= value != arg->val_real();
return (m_null_value || arg->null_value) ? UNKNOWN : rc;
}
int compare(const cmp_item *ci) const override
{
cmp_item_real *l_cmp= (cmp_item_real *) ci;
return (value < l_cmp->value)? -1 : ((value == l_cmp->value) ? 0 : 1);
}
cmp_item *make_same(THD *thd) override;
};
class cmp_item_decimal : public cmp_item_scalar
{
my_decimal value;
public:
cmp_item_decimal() = default; /* Remove gcc warning */
void store_value(Item *item) override;
int cmp(Item *arg) override;
int cmp_not_null(const Value *val) override;
int compare(const cmp_item *c) const override;
cmp_item *make_same(THD *thd) override;
};
/*
cmp_item for optimized IN with row (right part string, which never
be changed)
*/
class cmp_item_sort_string_in_static :public cmp_item_string
{
protected:
String value;
public:
cmp_item_sort_string_in_static(CHARSET_INFO *cs):
cmp_item_string(cs) {}
void store_value(Item *item) override
{
value_res= item->val_str(&value);
m_null_value= item->null_value;
}
int cmp_not_null(const Value *val) override
{
DBUG_ASSERT(false);
return TRUE;
}
int cmp(Item *item) override
{
// Should never be called
DBUG_ASSERT(false);
return TRUE;
}
int compare(const cmp_item *ci) const override
{
cmp_item_string *l_cmp= (cmp_item_string *) ci;
return sortcmp(value_res, l_cmp->value_res, cmp_charset);
}
cmp_item *make_same(THD *) override
{
return new cmp_item_sort_string_in_static(cmp_charset);
}
};
/**
A helper class to handle situations when some item "pred" (the predicant)
is consequently compared to a list of other items value0..valueN (the values).
Currently used to handle:
- <in predicate>
pred IN (value0, value1, value2)
- <simple case>
CASE pred WHEN value0 .. WHEN value1 .. WHEN value2 .. END
Every pair {pred,valueN} can be compared by its own Type_handler.
Some pairs can use the same Type_handler.
In cases when all pairs use exactly the same Type_handler,
we say "all types are compatible".
For example, for an expression
1 IN (1, 1e0, 1.0, 2)
- pred is 1
- value0 is 1
- value1 is 1e0
- value2 is 1.1
- value3 is 2
Pairs (pred,valueN) are compared as follows:
N expr1 Type
- ----- ----
0 1 INT
1 1e0 DOUBLE
2 1.0 DECIMAL
3 2 INT
Types are not compatible in this example.
During add_value() calls, each pair {pred,valueN} is analysed:
- If valueN is an explicit NULL, it can be ignored in the caller asks to do so
- If valueN is not an explicit NULL (or if the caller didn't ask to skip
NULLs), then the value add an element in the array m_comparators[].
Every element m_comparators[] stores the following information:
1. m_arg_index - the position of the value expression in the original
argument array, e.g. in Item_func_in::args[] or Item_func_case::args[].
2. m_handler - the pointer to the data type handler that the owner
will use to compare the pair {args[m_predicate_index],args[m_arg_index]}.
3. m_handler_index - the index of an m_comparators[] element corresponding
to the leftmost pair that uses exactly the same Type_handler for
comparison. m_handler_index helps to maintain unique data type handlers.
- m_comparators[i].m_handler_index==i means that this is the
leftmost pair that uses the Type_handler m_handler for comparision.
- If m_comparators[i].m_handlex_index!=i, it means that some earlier
element m_comparators[j<i] is already using this Type_handler
pointed by m_handler.
4. m_cmp_item - the pointer to a cmp_item instance to handle comparison
for this pair. Only unique type handlers have m_cmp_item!=NULL.
Non-unique type handlers share the same cmp_item instance.
For all m_comparators[] elements the following assersion it true:
(m_handler_index==i) == (m_cmp_item!=NULL)
*/
class Predicant_to_list_comparator
{
// Allocate memory on thd memory root for "nvalues" values.
bool alloc_comparators(THD *thd, uint nvalues);
/**
Look up m_comparators[] for a comparator using the given data type handler.
@param [OUT] idx - the index of the found comparator is returned here
@param [IN] handler - the data type handler to find
@param [IN] count - search in the range [0,count) only
@retval true - this type handler was not found
(*idx is not defined in this case).
@retval false - this type handler was found (the position of the
found handler is returned in idx).
*/
bool find_handler(uint *idx, const Type_handler *handler, uint count)
{
DBUG_ASSERT(count < m_comparator_count);
for (uint i= 0 ; i < count; i++)
{
if (m_comparators[i].m_handler == handler)
{
*idx= i;
return false;
}
}
return true;
}
/**
Populate m_comparators[i].m_handler_index for all elements in
m_comparators using the information in m_comparators[i].m_handlers,
which was previously populated by a add_predicant() call and a number
of add_value() calls.
@param [OUT] compatible - If all comparator types are compatible,
their data type handler is returned here.
@param [OUT] unuque_cnt - The number of unique data type handlers found.
If the value returned in *unique_cnt is 0,
it means all values were explicit NULLs:
expr0 IN (NULL,NULL,..,NULL)
@param [OUT] found_type - The bit mask for all found cmp_type()'s.
*/
void detect_unique_handlers(Type_handler_hybrid_field_type *compatible,
uint *unique_cnt, uint *found_types);
/**
Creates a cmp_item instances for all unique handlers and stores
them into m_comparators[i].m_cmp_item, using the information previously
populated by add_predicant(), add_value(), detect_unque_handlers().
*/
/*
Compare the predicant to the value pointed by m_comparators[i].
@param args - the same argument array which was previously used
with add_predicant() and add_value().
@param i - which pair to check.
@retval true - the predicant is not equal to the value.
@retval false - the predicant is equal to the value.
@retval UNKNOWN - the result is uncertain yet because the predicant
and/or the value returned NULL,
more pairs {pred,valueN} should be checked.
*/
int cmp_arg(Item_args *args, uint i)
{
Predicant_to_value_comparator *cmp=
&m_comparators[m_comparators[i].m_handler_index];
cmp_item *in_item= cmp->m_cmp_item;
DBUG_ASSERT(in_item);
/*
If this is the leftmost pair that uses the data type handler
pointed by m_comparators[i].m_handler, then we need to cache
the predicant value representation used by this handler.
*/
if (m_comparators[i].m_handler_index == i)
in_item->store_value(args->arguments()[m_predicant_index]);
/*
If the predicant item has null_value==true then:
- In case of scalar expression we can returns UNKNOWN immediately.
No needs to check the result of the value item.
- In case of ROW, null_value==true means that *some* row elements
returned NULL, but *some* elements can still be non-NULL!
We need to get the result of the value item and test
if non-NULL elements in the predicant and the value produce
TRUE (not equal), or UNKNOWN.
*/
if (args->arguments()[m_predicant_index]->null_value &&
m_comparators[i].m_handler != &type_handler_row)
return UNKNOWN;
return in_item->cmp(args->arguments()[m_comparators[i].m_arg_index]);
}
int cmp_args_nulls_equal(THD *thd, Item_args *args, uint i)
{
Predicant_to_value_comparator *cmp=
&m_comparators[m_comparators[i].m_handler_index];
cmp_item *in_item= cmp->m_cmp_item;
DBUG_ASSERT(in_item);
Item *predicant= args->arguments()[m_predicant_index];
Item *arg= args->arguments()[m_comparators[i].m_arg_index];
ValueBuffer<MAX_FIELD_WIDTH> val;
if (m_comparators[i].m_handler_index == i)
in_item->store_value(predicant);
m_comparators[i].m_handler->Item_save_in_value(thd, arg, &val);
if (predicant->null_value && val.is_null())
return FALSE; // Two nulls are equal
if (predicant->null_value || val.is_null())
return UNKNOWN;
return in_item->cmp_not_null(&val);
}
/**
Predicant_to_value_comparator - a comparator for one pair (pred,valueN).
See comments above.
*/
struct Predicant_to_value_comparator
{
const Type_handler *m_handler;
cmp_item *m_cmp_item;
uint m_arg_index;
uint m_handler_index;
void cleanup()
{
if (m_cmp_item)
delete m_cmp_item;
memset(this, 0, sizeof(*this));
}
};
Predicant_to_value_comparator *m_comparators; // The comparator array
uint m_comparator_count;// The number of elements in m_comparators[]
uint m_predicant_index; // The position of the predicant in its argument list,
// e.g. for Item_func_in m_predicant_index is 0,
// as predicant is stored in Item_func_in::args[0].
// For Item_func_case m_predicant_index is
// set to Item_func_case::first_expr_num.
public:
Predicant_to_list_comparator(THD *thd, uint nvalues)
:m_comparator_count(0),
m_predicant_index(0)
{
alloc_comparators(thd, nvalues);
}
uint comparator_count() const { return m_comparator_count; }
const Type_handler *get_comparator_type_handler(uint i) const
{
DBUG_ASSERT(i < m_comparator_count);
return m_comparators[i].m_handler;
}
uint get_comparator_arg_index(uint i) const
{
DBUG_ASSERT(i < m_comparator_count);
return m_comparators[i].m_arg_index;
}
cmp_item *get_comparator_cmp_item(uint i) const
{
DBUG_ASSERT(i < m_comparator_count);
return m_comparators[i].m_cmp_item;
}
#ifndef DBUG_OFF
void debug_print(THD *thd)
{
for (uint i= 0; i < m_comparator_count; i++)
{
DBUG_EXECUTE_IF("Predicant_to_list_comparator",
push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
ER_UNKNOWN_ERROR, "DBUG: [%d] arg=%d handler=%d (%s)", i,
m_comparators[i].m_arg_index,
m_comparators[i].m_handler_index,
m_comparators[m_comparators[i].m_handler_index].
m_handler->name().ptr()););
}
}
#endif
void add_predicant(Item_args *args, uint predicant_index)
{
DBUG_ASSERT(m_comparator_count == 0); // Set in constructor
DBUG_ASSERT(m_predicant_index == 0); // Set in constructor
DBUG_ASSERT(predicant_index < args->argument_count());
m_predicant_index= predicant_index;
}
/**
Add a new element into m_comparators[], using a {pred,valueN} pair.
@param funcname - the name of the operation, for error reporting
@param args - the owner function's argument list
@param value_index - the value position in args
@retval true - could not add an element because of non-comparable
arguments (e.g. ROWs with size)
@retval false - a new element was successfully added.
*/
bool add_value(const LEX_CSTRING &funcname, Item_args *args,
uint value_index);
/**
Add a new element into m_comparators[], ignoring explicit NULL values.
If the value appeared to be an explicit NULL, nulls_found[0] is set to true.
*/
bool add_value_skip_null(const LEX_CSTRING &funcname,
Item_args *args, uint value_index,
bool *nulls_found);
/**
Signal "this" that there will be no new add_value*() calls,
so it can prepare its internal structures for comparison.
@param [OUT] compatible - If all comparators are compatible,
their data type handler is returned here.
@param [OUT] unuque_cnt - The number of unique data type handlers found.
If the value returned in *unique_cnt is 0,
it means all values were explicit NULLs:
expr0 IN (NULL,NULL,..,NULL)
@param [OUT] found_type - The bit mask for all found cmp_type()'s.
*/
void all_values_added(Type_handler_hybrid_field_type *compatible,
uint *unique_cnt, uint *found_types)
{
detect_unique_handlers(compatible, unique_cnt, found_types);
}
/**
Creates cmp_item instances for all unique handlers and stores
them into m_comparators[].m_cmp_item, using the information previously
populated by add_predicant(), add_value() and detect_unque_handlers().
*/
bool make_unique_cmp_items(THD *thd, CHARSET_INFO *cs);
void cleanup()
{
DBUG_ASSERT(m_comparators);
for (uint i= 0; i < m_comparator_count; i++)
m_comparators[i].cleanup();
memset(m_comparators, 0, sizeof(m_comparators[0]) * m_comparator_count);
m_comparator_count= 0;
m_predicant_index= 0;
}
bool init_clone(THD *thd, uint nvalues)
{
m_comparator_count= 0;
m_predicant_index= 0;
return alloc_comparators(thd, nvalues);
}
/**
@param [IN] args - The argument list that was previously used with
add_predicant() and add_value().
@param [OUT] idx - In case if a value that is equal to the predicant
was found, the index of the matching value is returned
here. Otherwise, *idx is not changed.
@param [OUT] found_unknown_values - set to true if the result of at least
one comparison was UNKNOWN
@retval false - Found a value that is equal to the predicant
@retval true - Didn't find an equal value
*/
bool cmp(Item_args *args, uint *idx, bool *found_unknown_values)
{
for (uint i= 0 ; i < m_comparator_count ; i++)
{
DBUG_ASSERT(m_comparators[i].m_handler != NULL);
const int rc= cmp_arg(args, i);
if (rc == FALSE)
{
*idx= m_comparators[i].m_arg_index;
return false; // Found a matching value
}
if (rc == UNKNOWN)
*found_unknown_values= true;
}
return true; // Not found
}
/*
Same as above, but treats two NULLs as equal, e.g. as in DECODE_ORACLE().
*/
bool cmp_nulls_equal(THD *thd, Item_args *args, uint *idx)
{
for (uint i= 0 ; i < m_comparator_count ; i++)
{
DBUG_ASSERT(m_comparators[i].m_handler != NULL);
if (cmp_args_nulls_equal(thd, args, i) == FALSE)
{
*idx= m_comparators[i].m_arg_index;
return false; // Found a matching value
}
}
return true; // Not found
}
};
/*
The class Item_func_case is the CASE ... WHEN ... THEN ... END function
implementation.
*/
class Item_func_case :public Item_func_case_expression
{
protected:
String tmp_value;
DTCollation cmp_collation;
bool aggregate_then_and_else_arguments(THD *thd, uint count);
virtual Item **else_expr_addr() const= 0;
virtual Item *find_item()= 0;
inline void print_when_then_arguments(String *str,
enum_query_type query_type,
Item **items, uint count);
inline void print_else_argument(String *str, enum_query_type query_type,
Item *item);
void reorder_args(uint start);
public:
Item_func_case(THD *thd, List<Item> &list)
:Item_func_case_expression(thd, list)
{ }
double real_op() override;
longlong int_op() override;
String *str_op(String *) override;
my_decimal *decimal_op(my_decimal *) override;
bool date_op(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override;
bool time_op(THD *thd, MYSQL_TIME *ltime) override;
bool native_op(THD *thd, Native *to) override;
bool fix_fields(THD *thd, Item **ref) override;
table_map not_null_tables() const override { return 0; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("case") };
return name;
}
CHARSET_INFO *compare_collation() const { return cmp_collation.collation; }
bool need_parentheses_in_default() override { return true; }
};
/*
CASE WHEN cond THEN res [WHEN cond THEN res...] [ELSE res] END
Searched CASE checks all WHEN expressions one after another.
When some WHEN expression evaluated to TRUE then the
value of the corresponding THEN expression is returned.
*/
class Item_func_case_searched: public Item_func_case
{
uint when_count() const { return arg_count / 2; }
bool with_else() const { return arg_count % 2; }
Item **else_expr_addr() const override
{ return with_else() ? &args[arg_count - 1] : 0; }
public:
Item_func_case_searched(THD *thd, List<Item> &list)
:Item_func_case(thd, list)
{
DBUG_ASSERT(arg_count >= 2);
reorder_args(0);
}
enum Functype functype() const override { return CASE_SEARCHED_FUNC; }
void print(String *str, enum_query_type query_type) override;
bool fix_length_and_dec(THD *thd) override;
Item *propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
// None of the arguments are in a comparison context
Item_args::propagate_equal_fields(thd, Context_identity(), cond);
return this;
}
Item *find_item() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_case_searched>(thd, this); }
};
/*
CASE pred WHEN value THEN res [WHEN value THEN res...] [ELSE res] END
When the predicant expression is specified then it is compared to each WHEN
expression individually. When an equal WHEN expression is found
the corresponding THEN expression is returned.
In order to do correct comparisons several comparators are used. One for
each result type. Different result types that are used in particular
CASE ... END expression are collected in the fix_length_and_dec() member
function and only comparators for there result types are used.
*/
class Item_func_case_simple: public Item_func_case,
public Predicant_to_list_comparator
{
protected:
uint m_found_types;
uint when_count() const { return (arg_count - 1) / 2; }
bool with_else() const { return arg_count % 2 == 0; }
Item **else_expr_addr() const override
{ return with_else() ? &args[arg_count - 1] : 0; }
bool aggregate_switch_and_when_arguments(THD *thd, bool nulls_equal);
bool prepare_predicant_and_values(THD *thd, uint *found_types,
bool nulls_equal);
public:
Item_func_case_simple(THD *thd, List<Item> &list)
:Item_func_case(thd, list),
Predicant_to_list_comparator(thd, arg_count),
m_found_types(0)
{
DBUG_ASSERT(arg_count >= 3);
reorder_args(1);
}
void cleanup() override
{
DBUG_ENTER("Item_func_case_simple::cleanup");
Item_func::cleanup();
Predicant_to_list_comparator::cleanup();
DBUG_VOID_RETURN;
}
enum Functype functype() const override { return CASE_SIMPLE_FUNC; }
void print(String *str, enum_query_type query_type) override;
bool fix_length_and_dec(THD *thd) override;
Item *propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override;
Item *find_item() override;
Item *do_build_clone(THD *thd) const override
{
Item_func_case_simple *clone= (Item_func_case_simple *)
Item_func_case::do_build_clone(thd);
uint ncases= when_count();
if (clone && clone->Predicant_to_list_comparator::init_clone(thd, ncases))
return NULL;
return clone;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_case_simple>(thd, this); }
};
class Item_func_decode_oracle: public Item_func_case_simple
{
public:
Item_func_decode_oracle(THD *thd, List<Item> &list)
:Item_func_case_simple(thd, list)
{ }
const Schema *schema() const override { return &oracle_schema_ref; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("decode") };
return name;
}
void print(String *str, enum_query_type query_type) override;
bool fix_length_and_dec(THD *thd) override;
Item *find_item() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_decode_oracle>(thd, this); }
};
/*
The Item_func_in class implements
in_expr IN (<in value list>)
and
in_expr NOT IN (<in value list>)
The current implementation distinguishes 2 cases:
1) all items in <in value list> are constants and have the same
result type. This case is handled by in_vector class,
implementing fast bisection search.
2) otherwise Item_func_in employs several cmp_item objects to perform
comparisons of in_expr and an item from <in value list>. One cmp_item
object for each result type. Different result types are collected in the
fix_length_and_dec() member function by means of collect_cmp_types()
function.
Bisection is possible when:
1. All types are similar
2. All expressions in <in value list> are const
In the presence of NULLs, the correct result of evaluating this item
must be UNKNOWN or FALSE. To achieve that:
- If type is scalar, we can use bisection and the "have_null" boolean.
- If type is ROW, we will need to scan all of <in value list> when
searching, so bisection is impossible. Unless:
3. UNKNOWN and FALSE are equivalent results
4. Neither left expression nor <in value list> contain any NULL value
*/
class Item_func_in :public Item_func_opt_neg,
public Predicant_to_list_comparator
{
/**
Usable if <in value list> is made only of constants. Returns true if one
of these constants contains a NULL. Example:
IN ( (-5, (12,NULL)), ... ).
*/
bool list_contains_null();
bool all_items_are_consts(Item **items, uint nitems) const
{
for (uint i= 0; i < nitems; i++)
{
if (!items[i]->can_eval_in_optimize())
return false;
}
return true;
}
bool prepare_predicant_and_values(THD *thd, uint *found_types);
bool check_arguments() const override
{
return check_argument_types_like_args0();
}
protected:
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override;
bool transform_into_subq;
bool transform_into_subq_checked;
public:
/// An array of values, created when the bisection lookup method is used
in_vector *array;
/**
If there is some NULL among <in value list>, during a val_int() call; for
example
IN ( (1,(3,'col')), ... ), where 'col' is a column which evaluates to
NULL.
*/
bool have_null;
/**
true when all arguments of the IN list are of compatible types
and can be used safely as comparisons for key conditions
*/
bool arg_types_compatible;
TABLE_LIST *emb_on_expr_nest;
Item_func_in(THD *thd, List<Item> &list):
Item_func_opt_neg(thd, list),
Predicant_to_list_comparator(thd, arg_count - 1),
transform_into_subq(false),
transform_into_subq_checked(false),
array(0), have_null(0),
arg_types_compatible(FALSE), emb_on_expr_nest(0)
{ }
bool val_bool() override;
bool fix_fields(THD *, Item **) override;
bool fix_length_and_dec(THD *thd) override;
bool compatible_types_scalar_bisection_possible()
{
DBUG_ASSERT(m_comparator.cmp_type() != ROW_RESULT);
return all_items_are_consts(args + 1, arg_count - 1); // Bisection #2
}
bool compatible_types_row_bisection_possible()
{
DBUG_ASSERT(m_comparator.cmp_type() == ROW_RESULT);
return all_items_are_consts(args + 1, arg_count - 1) && // Bisection #2
((is_top_level_item() && !negated) || // Bisection #3
(!list_contains_null() && !args[0]->maybe_null())); // Bisection #4
}
bool agg_all_arg_charsets_for_comparison()
{
return agg_arg_charsets_for_comparison(cmp_collation, args, arg_count);
}
void fix_in_vector();
bool value_list_convert_const_to_int(THD *thd);
bool fix_for_scalar_comparison_using_bisection(THD *thd)
{
array= m_comparator.type_handler()->make_in_vector(thd, this, arg_count - 1);
if (!array) // OOM
return true;
fix_in_vector();
return false;
}
bool fix_for_scalar_comparison_using_cmp_items(THD *thd, uint found_types);
bool fix_for_row_comparison_using_cmp_items(THD *thd);
bool fix_for_row_comparison_using_bisection(THD *thd);
void cleanup() override
{
DBUG_ENTER("Item_func_in::cleanup");
Item_int_func::cleanup();
delete array;
array= 0;
Predicant_to_list_comparator::cleanup();
DBUG_VOID_RETURN;
}
void add_key_fields(JOIN *join, KEY_FIELD **key_fields, uint *and_level,
table_map usable_tables, SARGABLE_PARAM **sargables)
override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
SEL_TREE *get_func_row_mm_tree(RANGE_OPT_PARAM *param, Item_row *key_row);
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
/*
Note, we pass ANY_SUBST, this makes sure that non of the args
will be replaced to a zero-filled Item_string.
Such a change would require rebuilding of cmp_items.
*/
if (arg_types_compatible)
{
Context cmpctx(ANY_SUBST, m_comparator.type_handler(),
Item_func_in::compare_collation());
args[0]->propagate_equal_fields_and_change_item_tree(thd, cmpctx,
cond, &args[0]);
}
for (uint i= 0; i < comparator_count(); i++)
{
Context cmpctx(ANY_SUBST, get_comparator_type_handler(i),
Item_func_in::compare_collation());
uint idx= get_comparator_arg_index(i);
args[idx]->propagate_equal_fields_and_change_item_tree(thd, cmpctx,
cond, &args[idx]);
}
return this;
}
void print(String *str, enum_query_type query_type) override;
enum Functype functype() const override { return IN_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("in") };
return name;
}
enum precedence precedence() const override { return IN_PRECEDENCE; }
bool eval_not_null_tables(void *opt_arg) override;
bool find_not_null_fields(table_map allowed) override;
void fix_after_pullout(st_select_lex *new_parent, Item **ref, bool merge)
override;
bool count_sargable_conds(void *arg) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_in>(thd, this); }
Item *do_build_clone(THD *thd) const override
{
Item_func_in *clone= (Item_func_in *) Item_func::do_build_clone(thd);
if (clone)
{
clone->array= 0;
if (clone->Predicant_to_list_comparator::init_clone(thd, arg_count - 1))
return NULL;
}
return clone;
}
void mark_as_condition_AND_part(TABLE_LIST *embedding) override;
bool to_be_transformed_into_in_subq(THD *thd);
bool create_value_list_for_tvc(THD *thd, List< List<Item> > *values);
Item *in_predicate_to_in_subs_transformer(THD *thd, uchar *arg) override;
Item *in_predicate_to_equality_transformer(THD *thd, uchar *arg) override;
uint32 max_length_of_left_expr();
Item* varchar_upper_cmp_transformer(THD *thd, uchar *arg) override;
Item* vcol_subst_transformer(THD *thd, uchar *arg) override;
};
class cmp_item_row :public cmp_item
{
cmp_item **comparators;
uint n;
bool alloc_comparators(THD *thd, uint n);
bool aggregate_row_elements_for_comparison(THD *thd,
Type_handler_hybrid_field_type *cmp,
Item_args *tmp,
const LEX_CSTRING &funcname,
uint col,
uint level);
public:
cmp_item_row(): comparators(0), n(0) {}
~cmp_item_row();
void store_value(Item *item) override;
bool prepare_comparators(THD *, const LEX_CSTRING &funcname,
const Item_args *args, uint level);
int cmp(Item *arg) override;
int cmp_not_null(const Value *) override
{
DBUG_ASSERT(false);
return TRUE;
}
int compare(const cmp_item *arg) const override;
cmp_item *make_same(THD *thd) override;
bool store_value_by_template(THD *thd, cmp_item *tmpl, Item *) override;
friend class Item_func_in;
cmp_item *get_comparator(uint i) { return comparators[i]; }
};
class in_row :public in_vector
{
cmp_item_row tmp;
public:
in_row(THD *thd, uint elements, Item *);
~in_row();
bool set(uint pos, Item *item) override;
uchar *get_value(Item *item) override;
friend class Item_func_in;
const Type_handler *type_handler() const override { return &type_handler_row; }
cmp_item *get_cmp_item() { return &tmp; }
};
/* Functions used by where clause */
class Item_func_null_predicate :public Item_bool_func
{
protected:
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override
{
DBUG_ENTER("Item_func_null_predicate::get_func_mm_tree");
DBUG_RETURN(get_mm_parts(param, field, functype(), value));
}
SEL_ARG *get_mm_leaf(RANGE_OPT_PARAM *param, Field *field,
KEY_PART *key_part,
Item_func::Functype type, Item *value) override;
public:
Item_func_null_predicate(THD *thd, Item *a): Item_bool_func(thd, a) { }
void add_key_fields(JOIN *join, KEY_FIELD **key_fields, uint *and_level,
table_map usable_tables, SARGABLE_PARAM **sargables)
override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override
{
DBUG_ENTER("Item_func_null_predicate::get_mm_tree");
SEL_TREE *ftree= get_full_func_mm_tree_for_args(param, args[0], NULL);
if (!ftree)
ftree= Item_func::get_mm_tree(param, cond_ptr);
DBUG_RETURN(ftree);
}
CHARSET_INFO *compare_collation() const override
{ return args[0]->collation.collation; }
bool fix_length_and_dec(THD *thd) override
{
decimals=0;
max_length=1;
base_flags&= ~item_base_t::MAYBE_NULL;
return FALSE;
}
bool count_sargable_conds(void *arg) override;
Item* vcol_subst_transformer(THD *thd, uchar *arg) override;
};
class Item_func_isnull :public Item_func_null_predicate
{
public:
Item_func_isnull(THD *thd, Item *a): Item_func_null_predicate(thd, a) {}
bool val_bool() override;
enum Functype functype() const override { return ISNULL_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("isnull") };
return name;
}
void print(String *str, enum_query_type query_type) override;
enum precedence precedence() const override { return CMP_PRECEDENCE; }
bool arg_is_datetime_notnull_field()
{
Item **args= arguments();
if (args[0]->real_item()->type() == Item::FIELD_ITEM)
{
Field *field=((Item_field*) args[0]->real_item())->field;
if ((field->flags & NOT_NULL_FLAG) &&
field->type_handler()->cond_notnull_field_isnull_to_field_eq_zero())
return true;
}
return false;
}
/* Optimize case of not_null_column IS NULL */
void update_used_tables() override
{
if (!args[0]->maybe_null() && !arg_is_datetime_notnull_field())
{
used_tables_cache= 0; /* is always false */
const_item_cache= 1;
}
else
{
args[0]->update_used_tables();
used_tables_cache= args[0]->used_tables();
const_item_cache= args[0]->const_item();
}
}
COND *remove_eq_conds(THD *thd, Item::cond_result *cond_value,
bool top_level) override;
table_map not_null_tables() const override { return 0; }
bool find_not_null_fields(table_map allowed) override;
Item *neg_transformer(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_isnull>(thd, this); }
};
/* Functions used by HAVING for rewriting IN subquery */
class Item_in_subselect;
/*
This is like IS NOT NULL but it also remembers if it ever has
encountered a NULL.
*/
class Item_is_not_null_test :public Item_func_isnull
{
Item_in_subselect* owner;
public:
Item_is_not_null_test(THD *thd, Item_in_subselect* ow, Item *a):
Item_func_isnull(thd, a), owner(ow)
{}
enum Functype functype() const override { return ISNOTNULLTEST_FUNC; }
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<is_not_null_test>") };
return name;
}
void update_used_tables() override;
/*
we add RAND_TABLE_BIT to prevent moving this item from HAVING to WHERE
*/
table_map used_tables() const override
{ return used_tables_cache | RAND_TABLE_BIT; }
bool const_item() const override { return FALSE; }
};
class Item_func_isnotnull :public Item_func_null_predicate
{
public:
Item_func_isnotnull(THD *thd, Item *a):
Item_func_null_predicate(thd, a) {}
bool val_bool() override;
enum Functype functype() const override { return ISNOTNULL_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("isnotnull") };
return name;
}
enum precedence precedence() const override { return CMP_PRECEDENCE; }
table_map not_null_tables() const override
{ return is_top_level_item() ? not_null_tables_cache : 0; }
Item *neg_transformer(THD *thd) override;
void print(String *str, enum_query_type query_type) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_isnotnull>(thd, this); }
};
class Item_func_like :public Item_bool_func2
{
// Turbo Boyer-Moore data
bool canDoTurboBM; // pattern is '%abcd%' case
const char* pattern;
int pattern_len;
// TurboBM buffers, *this is owner
int* bmGs; // good suffix shift table, size is pattern_len + 1
int* bmBc; // bad character shift table, size is alphabet_size
void turboBM_compute_suffixes(int* suff);
void turboBM_compute_good_suffix_shifts(int* suff);
void turboBM_compute_bad_character_shifts();
bool turboBM_matches(const char* text, int text_len) const;
enum { alphabet_size = 256 };
Item *escape_item;
bool escape_used_in_parsing;
bool use_sampling;
DTCollation cmp_collation;
String cmp_value1, cmp_value2;
bool with_sargable_pattern() const;
protected:
SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param,
Field *field, Item *value) override
{
DBUG_ENTER("Item_func_like::get_func_mm_tree");
DBUG_RETURN(get_mm_parts(param, field, LIKE_FUNC, value));
}
SEL_ARG *get_mm_leaf(RANGE_OPT_PARAM *param, Field *field,
KEY_PART *key_part,
Item_func::Functype type, Item *value) override;
public:
int escape;
bool negated;
Item_func_like(THD *thd, Item *a, Item *b, Item *escape_arg, bool escape_used):
Item_bool_func2(thd, a, b), canDoTurboBM(FALSE), pattern(0), pattern_len(0),
bmGs(0), bmBc(0), escape_item(escape_arg),
escape_used_in_parsing(escape_used), use_sampling(0), negated(0) {}
bool get_negated() const { return negated; } // Used by ColumnStore
Sql_mode_dependency value_depends_on_sql_mode() const override;
bool val_bool() override;
enum Functype functype() const override { return LIKE_FUNC; }
void print(String *str, enum_query_type query_type) override;
CHARSET_INFO *compare_collation() const override
{ return cmp_collation.collation; }
cond_result eq_cmp_result() const override
{
/**
We cannot always rewrite conditions as follows:
from: WHERE expr1=const AND expr1 LIKE expr2
to: WHERE expr1=const AND const LIKE expr2
or
from: WHERE expr1=const AND expr2 LIKE expr1
to: WHERE expr1=const AND expr2 LIKE const
because LIKE works differently comparing to the regular "=" operator:
1. LIKE performs a stricter one-character-to-one-character comparison
and does not recognize contractions and expansions.
Replacing "expr1" to "const in LIKE would make the condition
stricter in case of a complex collation.
2. LIKE does not ignore trailing spaces and thus works differently
from the "=" operator in case of "PAD SPACE" collations
(which are the majority in MariaDB). So, for "PAD SPACE" collations:
- expr1=const - ignores trailing spaces
- const LIKE expr2 - does not ignore trailing spaces
- expr2 LIKE const - does not ignore trailing spaces
Allow only "binary" for now.
It neither ignores trailing spaces nor has contractions/expansions.
TODO:
We could still replace "expr1" to "const" in "expr1 LIKE expr2"
in case of a "PAD SPACE" collation, but only if "expr2" has '%'
at the end.
*/
if (compare_collation() == &my_charset_bin)
{
/*
'foo' NOT LIKE 'foo' is false,
'foo' LIKE 'foo' is true.
*/
return negated? COND_FALSE : COND_TRUE;
}
return COND_OK;
}
void add_key_fields(JOIN *join, KEY_FIELD **key_fields, uint *and_level,
table_map usable_tables, SARGABLE_PARAM **sargables)
override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
/*
LIKE differs from the regular comparison operator ('=') in the following:
- LIKE never ignores trailing spaces (even for PAD SPACE collations)
Propagation of equal fields with a PAD SPACE collation into LIKE
is not safe.
Example:
WHERE a='a ' AND a LIKE 'a' - returns true for 'a'
cannot be rewritten to:
WHERE a='a ' AND 'a ' LIKE 'a' - returns false for 'a'
Note, binary collations in MySQL/MariaDB, e.g. latin1_bin,
still have the PAD SPACE attribute and ignore trailing spaces!
- LIKE does not take into account contractions, expansions,
and ignorable characters.
Propagation of equal fields with contractions/expansions/ignorables
is also not safe.
It's safe to propagate my_charset_bin (BINARY/VARBINARY/BLOB) values,
because they do not ignore trailing spaces and have one-to-one mapping
between a string and its weights.
The below condition should be true only for my_charset_bin
(as of version 10.1.7).
*/
uint flags= Item_func_like::compare_collation()->state;
if ((flags & MY_CS_NOPAD) && !(flags & MY_CS_NON1TO1))
Item_args::propagate_equal_fields(thd,
Context(ANY_SUBST,
&type_handler_long_blob,
compare_collation()),
cond);
return this;
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("like") };
return name;
}
enum precedence precedence() const override { return IN_PRECEDENCE; }
bool fix_fields(THD *thd, Item **ref) override;
bool fix_length_and_dec(THD *thd) override
{
max_length= 1;
Item_args old_predicant(args[0]);
if (agg_arg_charsets_for_comparison(cmp_collation, args, 2))
return true;
raise_note_if_key_become_unused(current_thd, old_predicant);
return false;
}
void cleanup() override;
Item *neg_transformer(THD *thd) override
{
negated= !negated;
return this;
}
bool walk(Item_processor processor, bool walk_subquery, void *arg) override
{
return (walk_args(processor, walk_subquery, arg) ||
escape_item->walk(processor, walk_subquery, arg) ||
(this->*processor)(arg));
}
bool find_selective_predicates_list_processor(void *arg) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_like>(thd, this); }
};
typedef struct pcre2_real_code_8 pcre2_code;
typedef struct pcre2_real_match_data_8 pcre2_match_data;
#define PCRE2_SIZE size_t
class Regexp_processor_pcre
{
pcre2_code *m_pcre;
pcre2_match_data *m_pcre_match_data;
bool m_conversion_is_needed;
bool m_is_const;
int m_library_flags;
CHARSET_INFO *m_library_charset;
String m_prev_pattern;
int m_pcre_exec_rc;
PCRE2_SIZE *m_SubStrVec;
void pcre_exec_warn(int rc) const;
int pcre_exec_with_warn(const pcre2_code *code,
pcre2_match_data *data,
const char *subject, int length, int startoffset,
int options);
public:
String *convert_if_needed(String *src, String *converter);
String subject_converter;
String pattern_converter;
String replace_converter;
Regexp_processor_pcre() :
m_pcre(NULL), m_pcre_match_data(NULL),
m_conversion_is_needed(true), m_is_const(0),
m_library_flags(0),
m_library_charset(&my_charset_utf8mb4_general_ci)
{}
int default_regex_flags();
void init(CHARSET_INFO *data_charset, int extra_flags);
bool fix_owner(Item_func *owner, Item *subject_arg, Item *pattern_arg);
bool compile(String *pattern, bool send_error);
bool compile(Item *item, bool send_error);
bool recompile(Item *item)
{
return !m_is_const && compile(item, false);
}
bool exec(const char *str, size_t length, size_t offset);
bool exec(String *str, int offset, uint n_result_offsets_to_convert);
bool exec(Item *item, int offset, uint n_result_offsets_to_convert);
bool match() const { return m_pcre_exec_rc < 0 ? 0 : 1; }
int nsubpatterns() const { return m_pcre_exec_rc <= 0 ? 0 : m_pcre_exec_rc; }
size_t subpattern_start(int n) const
{
return m_pcre_exec_rc <= 0 ? 0 : m_SubStrVec[n * 2];
}
size_t subpattern_end(int n) const
{
return m_pcre_exec_rc <= 0 ? 0 : m_SubStrVec[n * 2 + 1];
}
size_t subpattern_length(int n) const
{
return subpattern_end(n) - subpattern_start(n);
}
void reset()
{
m_pcre= NULL;
m_pcre_match_data= NULL;
m_prev_pattern.length(0);
}
void cleanup();
bool is_compiled() const { return m_pcre != NULL; }
bool is_const() const { return m_is_const; }
void set_const(bool arg) { m_is_const= arg; }
CHARSET_INFO * library_charset() const { return m_library_charset; }
void unset_flag(int flag) { m_library_flags&= ~flag; }
};
class Item_func_regex :public Item_bool_func
{
Regexp_processor_pcre re;
DTCollation cmp_collation;
public:
Item_func_regex(THD *thd, Item *a, Item *b): Item_bool_func(thd, a, b)
{}
void cleanup() override
{
DBUG_ENTER("Item_func_regex::cleanup");
Item_bool_func::cleanup();
re.cleanup();
DBUG_VOID_RETURN;
}
bool val_bool() override;
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("regexp") };
return name;
}
enum precedence precedence() const override { return IN_PRECEDENCE; }
Item *do_get_copy(THD *thd) const override { return 0; }
void print(String *str, enum_query_type query_type) override
{
print_op(str, query_type);
}
CHARSET_INFO *compare_collation() const override
{ return cmp_collation.collation; }
};
/*
In the corner case REGEXP_INSTR could return (2^32 + 1),
which would not fit into Item_long_func range.
But string lengths are limited with max_allowed_packet,
which cannot be bigger than 1024*1024*1024.
*/
class Item_func_regexp_instr :public Item_long_func
{
bool check_arguments() const override
{
return (args[0]->check_type_can_return_str(func_name_cstring()) ||
args[1]->check_type_can_return_text(func_name_cstring()));
}
Regexp_processor_pcre re;
DTCollation cmp_collation;
public:
Item_func_regexp_instr(THD *thd, Item *a, Item *b)
:Item_long_func(thd, a, b)
{}
void cleanup() override
{
DBUG_ENTER("Item_func_regexp_instr::cleanup");
Item_int_func::cleanup();
re.cleanup();
DBUG_VOID_RETURN;
}
longlong val_int() override;
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("regexp_instr") };
return name;
}
Item *do_get_copy(THD *thd) const override { return 0; }
};
typedef class Item COND;
class Item_cond :public Item_bool_func
{
protected:
List<Item> list;
table_map and_tables_cache;
public:
Item_cond(THD *thd): Item_bool_func(thd)
{
/* Item_cond() is only used to create top level items */
top_level_item();
const_item_cache=0;
}
Item_cond(THD *thd, Item *i1, Item *i2);
Item_cond(THD *thd, Item_cond *item);
Item_cond(THD *thd, List<Item> &nlist):
Item_bool_func(thd), list(nlist) {}
bool add(Item *item, MEM_ROOT *root)
{
DBUG_ASSERT(item);
return list.push_back(item, root);
}
bool add_at_head(Item *item, MEM_ROOT *root)
{
DBUG_ASSERT(item);
return list.push_front(item, root);
}
void add_at_head(List<Item> *nlist)
{
DBUG_ASSERT(nlist->elements);
list.prepend(nlist);
}
void add_at_end(List<Item> *nlist)
{
DBUG_ASSERT(nlist->elements);
list.append(nlist);
}
bool fix_fields(THD *, Item **ref) override;
void fix_after_pullout(st_select_lex *new_parent, Item **ref, bool merge)
override;
enum Type type() const override { return COND_ITEM; }
List<Item>* argument_list() { return &list; }
table_map used_tables() const override;
void update_used_tables() override
{
used_tables_and_const_cache_init();
used_tables_and_const_cache_update_and_join(list);
}
COND *build_equal_items(THD *thd, COND_EQUAL *inherited,
bool link_item_fields,
COND_EQUAL **cond_equal_ref) override;
COND *remove_eq_conds(THD *thd, Item::cond_result *cond_value,
bool top_level) override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
void print(String *str, enum_query_type query_type) override;
void split_sum_func(THD *thd, Ref_ptr_array ref_pointer_array,
List<Item> &fields, uint flags) override;
friend int setup_conds(THD *thd, TABLE_LIST *tables, TABLE_LIST *leaves,
COND **conds);
void copy_andor_arguments(THD *thd, Item_cond *item);
bool walk(Item_processor processor, bool walk_subquery, void *arg) override;
Item *do_transform(THD *thd, Item_transformer transformer, uchar *arg,
bool toplevel);
Item *transform(THD *thd, Item_transformer transformer, uchar *arg) override
{
return do_transform(thd, transformer, arg, 0);
}
Item *top_level_transform(THD *thd, Item_transformer transformer, uchar *arg)
override
{
return do_transform(thd, transformer, arg, 1);
}
void traverse_cond(Cond_traverser, void *arg, traverse_order order) override;
void neg_arguments(THD *thd);
Item* propagate_equal_fields(THD *, const Context &, COND_EQUAL *) override;
Item *do_compile(THD *thd, Item_analyzer analyzer, uchar **arg_p,
Item_transformer transformer, uchar *arg_t, bool toplevel);
Item *compile(THD *thd, Item_analyzer analyzer, uchar **arg_p,
Item_transformer transformer, uchar *arg_t) override
{
return do_compile(thd, analyzer, arg_p, transformer, arg_t, 0);
}
Item* top_level_compile(THD *thd, Item_analyzer analyzer, uchar **arg_p,
Item_transformer transformer, uchar *arg_t) override
{
return do_compile(thd, analyzer, arg_p, transformer, arg_t, 1);
}
bool eval_not_null_tables(void *opt_arg) override;
bool find_not_null_fields(table_map allowed) override;
Item *do_build_clone(THD *thd) const override;
bool excl_dep_on_table(table_map tab_map) override;
bool excl_dep_on_grouping_fields(st_select_lex *sel) override;
private:
void merge_sub_condition(List_iterator<Item>& li);
};
template <template<class> class LI, class T> class Item_equal_iterator;
/*
The class Item_equal is used to represent conjunctions of equality
predicates of the form field1 = field2, and field=const in where
conditions and on expressions.
All equality predicates of the form field1=field2 contained in a
conjunction are substituted for a sequence of items of this class.
An item of this class Item_equal(f1,f2,...fk) represents a
multiple equality f1=f2=...=fk.l
If a conjunction contains predicates f1=f2 and f2=f3, a new item of
this class is created Item_equal(f1,f2,f3) representing the multiple
equality f1=f2=f3 that substitutes the above equality predicates in
the conjunction.
A conjunction of the predicates f2=f1 and f3=f1 and f3=f2 will be
substituted for the item representing the same multiple equality
f1=f2=f3.
An item Item_equal(f1,f2) can appear instead of a conjunction of
f2=f1 and f1=f2, or instead of just the predicate f1=f2.
An item of the class Item_equal inherits equalities from outer
conjunctive levels.
Suppose we have a where condition of the following form:
WHERE f1=f2 AND f3=f4 AND f3=f5 AND ... AND (...OR (f1=f3 AND ...)).
In this case:
f1=f2 will be substituted for Item_equal(f1,f2);
f3=f4 and f3=f5 will be substituted for Item_equal(f3,f4,f5);
f1=f3 will be substituted for Item_equal(f1,f2,f3,f4,f5);
An object of the class Item_equal can contain an optional constant
item c. Then it represents a multiple equality of the form
c=f1=...=fk.
Objects of the class Item_equal are used for the following:
1. An object Item_equal(t1.f1,...,tk.fk) allows us to consider any
pair of tables ti and tj as joined by an equi-condition.
Thus it provide us with additional access paths from table to table.
2. An object Item_equal(t1.f1,...,tk.fk) is applied to deduce new
SARGable predicates:
f1=...=fk AND P(fi) => f1=...=fk AND P(fi) AND P(fj).
It also can give us additional index scans and can allow us to
improve selectivity estimates.
3. An object Item_equal(t1.f1,...,tk.fk) is used to optimize the
selected execution plan for the query: if table ti is accessed
before the table tj then in any predicate P in the where condition
the occurrence of tj.fj is substituted for ti.fi. This can allow
an evaluation of the predicate at an earlier step.
When feature 1 is supported they say that join transitive closure
is employed.
When feature 2 is supported they say that search argument transitive
closure is employed.
Both features are usually supported by preprocessing original query and
adding additional predicates.
We do not just add predicates, we rather dynamically replace some
predicates that can not be used to access tables in the investigated
plan for those, obtained by substitution of some fields for equal fields,
that can be used.
Prepared Statements/Stored Procedures note: instances of class
Item_equal are created only at the time a PS/SP is executed and
are deleted in the end of execution. All changes made to these
objects need not be registered in the list of changes of the parse
tree and do not harm PS/SP re-execution.
Item equal objects are employed only at the optimize phase. Usually they are
not supposed to be evaluated. Yet in some cases we call the method val_int()
for them. We have to take care of restricting the predicate such an
object represents f1=f2= ...=fn to the projection of known fields fi1=...=fik.
*/
class Item_equal: public Item_bool_func
{
/*
The list of equal items. Currently the list can contain:
- Item_fields items for references to table columns
- Item_direct_view_ref items for references to view columns
- one const item
If the list contains a constant item this item is always first in the list.
The list contains at least two elements.
Currently all Item_fields/Item_direct_view_ref items in the list should
refer to table columns with equavalent type definitions. In particular
if these are string columns they should have the same charset/collation.
Use objects of the companion class Item_equal_fields_iterator to iterate
over all items from the list of the Item_field/Item_direct_view_ref classes.
*/
List<Item> equal_items;
/*
TRUE <-> one of the items is a const item.
Such item is always first in in the equal_items list
*/
bool with_const;
/*
The field eval_item is used when this item is evaluated
with the method val_int()
*/
cmp_item *eval_item;
/*
This initially is set to FALSE. It becomes TRUE when this item is evaluated
as being always false. If the flag is TRUE the contents of the list
the equal_items should be ignored.
*/
bool cond_false;
/*
This initially is set to FALSE. It becomes TRUE when this item is evaluated
as being always true. If the flag is TRUE the contents of the list
the equal_items should be ignored.
*/
bool cond_true;
/*
For Item_equal objects inside an OR clause: one of the fields that were
used in the original equality.
*/
Item_field *context_field;
bool link_equal_fields;
const Type_handler *m_compare_handler;
CHARSET_INFO *m_compare_collation;
public:
COND_EQUAL *upper_levels; /* multiple equalities of upper and levels */
Item_equal(THD *thd, const Type_handler *handler,
Item *f1, Item *f2, bool with_const_item);
Item_equal(THD *thd, Item_equal *item_equal);
/* Currently the const item is always the first in the list of equal items */
inline Item* get_const() { return with_const ? equal_items.head() : NULL; }
void add_const(THD *thd, Item *c);
/** Add a non-constant item to the multiple equality */
void add(Item *f, MEM_ROOT *root) { equal_items.push_back(f, root); }
bool contains(Field *field);
Item* get_first(struct st_join_table *context, Item *field);
/** Get number of field items / references to field items in this object */
uint n_field_items() { return equal_items.elements - MY_TEST(with_const); }
void merge(THD *thd, Item_equal *item);
bool merge_with_check(THD *thd, Item_equal *equal_item, bool save_merged);
void merge_into_list(THD *thd, List<Item_equal> *list, bool save_merged,
bool only_intersected);
void update_const(THD *thd);
enum Functype functype() const override { return MULT_EQUAL_FUNC; }
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("multiple equal") };
return name;
}
void sort(Item_field_cmpfunc compare, void *arg);
bool fix_length_and_dec(THD *thd) override;
bool fix_fields(THD *thd, Item **ref) override;
void cleanup() override
{
delete eval_item;
eval_item= NULL;
}
void update_used_tables() override;
bool find_not_null_fields(table_map allowed) override;
COND *build_equal_items(THD *thd, COND_EQUAL *inherited,
bool link_item_fields,
COND_EQUAL **cond_equal_ref) override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields,
uint *and_level, table_map usable_tables,
SARGABLE_PARAM **sargables) override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
bool walk(Item_processor processor, bool walk_subquery, void *arg) override;
Item *transform(THD *thd, Item_transformer transformer, uchar *arg) override;
void print(String *str, enum_query_type query_type) override;
const Type_handler *compare_type_handler() const { return m_compare_handler; }
CHARSET_INFO *compare_collation() const override
{ return m_compare_collation; }
void set_context_field(Item_field *ctx_field) { context_field= ctx_field; }
void set_link_equal_fields(bool flag) { link_equal_fields= flag; }
Item* do_get_copy(THD *thd) const override { return 0; }
/*
This does not comply with the specification of the virtual method,
but Item_equal items are processed distinguishly anyway
*/
bool excl_dep_on_table(table_map tab_map) override
{
return used_tables() & tab_map;
}
bool excl_dep_on_in_subq_left_part(Item_in_subselect *subq_pred) override;
bool excl_dep_on_grouping_fields(st_select_lex *sel) override;
bool create_pushable_equalities(THD *thd, List<Item> *equalities,
Pushdown_checker checker, uchar *arg,
bool clone_const);
/* Return the number of elements in this multiple equality */
uint elements_count() { return equal_items.elements; }
friend class Item_equal_fields_iterator;
bool count_sargable_conds(void *arg) override;
Item *multiple_equality_transformer(THD *thd, uchar *arg) override;
friend class Item_equal_iterator<List_iterator_fast,Item>;
friend class Item_equal_iterator<List_iterator,Item>;
friend Item *eliminate_item_equal(THD *thd, COND *cond,
COND_EQUAL *upper_levels,
Item_equal *item_equal);
friend bool setup_sj_materialization_part1(struct st_join_table *tab);
friend bool setup_sj_materialization_part2(struct st_join_table *tab);
};
class COND_EQUAL: public Sql_alloc
{
public:
uint max_members; /* max number of members the current level
list and all lower level lists */
COND_EQUAL *upper_levels; /* multiple equalities of upper and levels */
List<Item_equal> current_level; /* list of multiple equalities of
the current and level */
COND_EQUAL()
{
upper_levels= 0;
}
COND_EQUAL(Item_equal *item, MEM_ROOT *mem_root)
:upper_levels(0)
{
current_level.push_back(item, mem_root);
}
void copy(COND_EQUAL &cond_equal)
{
max_members= cond_equal.max_members;
upper_levels= cond_equal.upper_levels;
if (cond_equal.current_level.is_empty())
current_level.empty();
else
current_level= cond_equal.current_level;
}
bool is_empty()
{
return (current_level.elements == 0);
}
};
/*
The template Item_equal_iterator is used to define classes
Item_equal_fields_iterator and Item_equal_fields_iterator_slow.
These are helper classes for the class Item equal
Both classes are used to iterate over references to table/view columns
from the list of equal items that included in an Item_equal object.
The second class supports the operation of removal of the current member
from the list when performing an iteration.
*/
template <template<class> class LI, typename T> class Item_equal_iterator
: public LI<T>
{
protected:
Item_equal *item_equal;
Item *curr_item= nullptr;
public:
Item_equal_iterator(Item_equal &item_eq)
:LI<T> (item_eq.equal_items), item_equal(&item_eq)
{
if (item_eq.with_const)
{
LI<T> *list_it= this;
curr_item= (*list_it)++;
}
}
Item* operator++(int)
{
LI<T> *list_it= this;
curr_item= (*list_it)++;
return curr_item;
}
void rewind(void)
{
LI<T> *list_it= this;
list_it->rewind();
if (item_equal->with_const)
curr_item= (*list_it)++;
}
Field *get_curr_field()
{
Item_field *item= (Item_field *) (curr_item->real_item());
return item->field;
}
};
typedef Item_equal_iterator<List_iterator_fast,Item > Item_equal_iterator_fast;
class Item_equal_fields_iterator
:public Item_equal_iterator_fast
{
public:
Item_equal_fields_iterator(Item_equal &item_eq)
:Item_equal_iterator_fast(item_eq)
{ }
Item ** ref()
{
return List_iterator_fast<Item>::ref();
}
};
typedef Item_equal_iterator<List_iterator,Item > Item_equal_iterator_iterator_slow;
class Item_equal_fields_iterator_slow
:public Item_equal_iterator_iterator_slow
{
public:
Item_equal_fields_iterator_slow(Item_equal &item_eq)
:Item_equal_iterator_iterator_slow(item_eq)
{ }
void remove()
{
List_iterator<Item>::remove();
}
};
class Item_cond_and final :public Item_cond
{
public:
COND_EQUAL m_cond_equal; /* contains list of Item_equal objects for
the current and level and reference
to multiple equalities of upper and levels */
Item_cond_and(THD *thd): Item_cond(thd) {}
Item_cond_and(THD *thd, Item *i1,Item *i2): Item_cond(thd, i1, i2) {}
Item_cond_and(THD *thd, Item_cond_and *item): Item_cond(thd, item) {}
Item_cond_and(THD *thd, List<Item> &list_arg): Item_cond(thd, list_arg) {}
enum Functype functype() const override { return COND_AND_FUNC; }
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("and") };
return name;
}
enum precedence precedence() const override { return AND_PRECEDENCE; }
table_map not_null_tables() const override
{ return is_top_level_item() ? not_null_tables_cache: and_tables_cache; }
Item *copy_andor_structure(THD *thd) override;
Item *neg_transformer(THD *thd) override;
void mark_as_condition_AND_part(TABLE_LIST *embedding) override;
uint exists2in_reserved_items() override { return list.elements; };
COND *build_equal_items(THD *thd, COND_EQUAL *inherited,
bool link_item_fields,
COND_EQUAL **cond_equal_ref) override;
bool set_format_by_check_constraint(Send_field_extended_metadata *to) const
override;
void add_key_fields(JOIN *join, KEY_FIELD **key_fields, uint *and_level,
table_map usable_tables, SARGABLE_PARAM **sargables)
override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_cond_and>(thd, this); }
};
inline bool is_cond_and(Item *item)
{
Item_func *func_item= item->get_item_func();
return func_item && func_item->functype() == Item_func::COND_AND_FUNC;
}
class Item_cond_or final :public Item_cond
{
public:
Item_cond_or(THD *thd): Item_cond(thd) {}
Item_cond_or(THD *thd, Item *i1,Item *i2): Item_cond(thd, i1, i2) {}
Item_cond_or(THD *thd, Item_cond_or *item): Item_cond(thd, item) {}
Item_cond_or(THD *thd, List<Item> &list_arg): Item_cond(thd, list_arg) {}
enum Functype functype() const override { return COND_OR_FUNC; }
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("or") };
return name;
}
enum precedence precedence() const override { return OR_PRECEDENCE; }
table_map not_null_tables() const override { return and_tables_cache; }
Item *copy_andor_structure(THD *thd) override;
Item *neg_transformer(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_cond_or>(thd, this); }
};
class Item_func_dyncol_check :public Item_bool_func
{
public:
Item_func_dyncol_check(THD *thd, Item *str): Item_bool_func(thd, str) {}
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("column_check") };
return name;
}
bool need_parentheses_in_default() override { return false; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_dyncol_check>(thd, this); }
};
class Item_func_dyncol_exists :public Item_bool_func
{
public:
Item_func_dyncol_exists(THD *thd, Item *str, Item *num):
Item_bool_func(thd, str, num) {}
bool val_bool() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("column_exists") };
return name;
}
bool need_parentheses_in_default() override { return false; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_dyncol_exists>(thd, this); }
};
class Item_func_cursor_bool_attr: public Item_bool_func, public Cursor_ref
{
public:
Item_func_cursor_bool_attr(THD *thd, const LEX_CSTRING *name, uint offset)
:Item_bool_func(thd), Cursor_ref(name, offset)
{ }
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), arg, VCOL_SESSION_FUNC);
}
void print(String *str, enum_query_type query_type) override
{
Cursor_ref::print_func(str, func_name_cstring());
}
};
class Item_func_cursor_isopen: public Item_func_cursor_bool_attr
{
public:
Item_func_cursor_isopen(THD *thd, const LEX_CSTRING *name, uint offset)
:Item_func_cursor_bool_attr(thd, name, offset) { }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("%ISOPEN") };
return name;
}
bool val_bool() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_cursor_isopen>(thd, this); }
};
class Item_func_cursor_found: public Item_func_cursor_bool_attr
{
public:
Item_func_cursor_found(THD *thd, const LEX_CSTRING *name, uint offset)
:Item_func_cursor_bool_attr(thd, name, offset)
{
set_maybe_null();
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("%FOUND") };
return name;
}
bool val_bool() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_cursor_found>(thd, this); }
};
class Item_func_cursor_notfound: public Item_func_cursor_bool_attr
{
public:
Item_func_cursor_notfound(THD *thd, const LEX_CSTRING *name, uint offset)
:Item_func_cursor_bool_attr(thd, name, offset)
{
set_maybe_null();
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("%NOTFOUND") };
return name;
}
bool val_bool() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_cursor_notfound>(thd, this); }
};
inline bool is_cond_or(Item *item)
{
Item_func *func_item= item->get_item_func();
return func_item && func_item->functype() == Item_func::COND_OR_FUNC;
}
Item *and_expressions(Item *a, Item *b, Item **org_item);
class Comp_creator
{
public:
Comp_creator() = default; /* Remove gcc warning */
virtual ~Comp_creator() = default; /* Remove gcc warning */
/**
Create operation with given arguments.
*/
virtual Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b)
const = 0;
/**
Create operation with given arguments in swap order.
*/
virtual Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b)
const = 0;
virtual const char* symbol(bool invert) const = 0;
virtual bool eqne_op() const = 0;
virtual bool l_op() const = 0;
};
class Eq_creator :public Comp_creator
{
public:
Eq_creator() = default; /* Remove gcc warning */
virtual ~Eq_creator() = default; /* Remove gcc warning */
Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b) const override;
Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b) const override;
const char* symbol(bool invert) const override { return invert? "<>" : "="; }
bool eqne_op() const override { return 1; }
bool l_op() const override { return 0; }
};
class Ne_creator :public Comp_creator
{
public:
Ne_creator() = default; /* Remove gcc warning */
virtual ~Ne_creator() = default; /* Remove gcc warning */
Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b) const override;
Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b) const override;
const char* symbol(bool invert) const override { return invert? "=" : "<>"; }
bool eqne_op() const override { return 1; }
bool l_op() const override { return 0; }
};
class Gt_creator :public Comp_creator
{
public:
Gt_creator() = default; /* Remove gcc warning */
virtual ~Gt_creator() = default; /* Remove gcc warning */
Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b) const override;
Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b) const override;
const char* symbol(bool invert) const override { return invert? "<=" : ">"; }
bool eqne_op() const override { return 0; }
bool l_op() const override { return 0; }
};
class Lt_creator :public Comp_creator
{
public:
Lt_creator() = default; /* Remove gcc warning */
virtual ~Lt_creator() = default; /* Remove gcc warning */
Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b) const override;
Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b) const override;
const char* symbol(bool invert) const override { return invert? ">=" : "<"; }
bool eqne_op() const override { return 0; }
bool l_op() const override { return 1; }
};
class Ge_creator :public Comp_creator
{
public:
Ge_creator() = default; /* Remove gcc warning */
virtual ~Ge_creator() = default; /* Remove gcc warning */
Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b) const override;
Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b) const override;
const char* symbol(bool invert) const override { return invert? "<" : ">="; }
bool eqne_op() const override { return 0; }
bool l_op() const override { return 0; }
};
class Le_creator :public Comp_creator
{
public:
Le_creator() = default; /* Remove gcc warning */
virtual ~Le_creator() = default; /* Remove gcc warning */
Item_bool_rowready_func2* create(THD *thd, Item *a, Item *b) const override;
Item_bool_rowready_func2* create_swap(THD *thd, Item *a, Item *b) const override;
const char* symbol(bool invert) const override { return invert? ">" : "<="; }
bool eqne_op() const override { return 0; }
bool l_op() const override { return 1; }
};
/*
These need definitions from this file but the variables are defined
in mysqld.h. The variables really belong in this component, but for
the time being we leave them in mysqld.cc to avoid merge problems.
*/
extern Eq_creator eq_creator;
extern Ne_creator ne_creator;
extern Gt_creator gt_creator;
extern Lt_creator lt_creator;
extern Ge_creator ge_creator;
extern Le_creator le_creator;
#endif /* ITEM_CMPFUNC_INCLUDED */
|