1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476
|
#ifndef ITEM_FUNC_INCLUDED
#define ITEM_FUNC_INCLUDED
/* Copyright (c) 2000, 2016, Oracle and/or its affiliates.
Copyright (c) 2009, 2021, 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 */
/* Function items used by mysql */
#ifdef HAVE_IEEEFP_H
extern "C" /* Bug in BSDI include file */
{
#include <ieeefp.h>
}
#endif
#include "sql_udf.h" // udf_handler
#include "my_decimal.h" // string2my_decimal
#include <cmath>
extern bool st_append_json(String *s,
CHARSET_INFO *json_cs, const uchar *js, uint js_len);
class Item_func :public Item_func_or_sum
{
void sync_with_sum_func_and_with_field(List<Item> &list);
protected:
virtual bool check_arguments() const
{
return check_argument_types_scalar(0, arg_count);
}
bool check_argument_types_like_args0() const;
bool check_argument_types_scalar(uint start, uint end) const;
bool check_argument_types_traditional_scalar(uint start, uint end) const;
bool check_argument_types_or_binary(const Type_handler *handler,
uint start, uint end) const;
bool check_argument_types_can_return_int(uint start, uint end) const;
bool check_argument_types_can_return_real(uint start, uint end) const;
bool check_argument_types_can_return_str(uint start, uint end) const;
bool check_argument_types_can_return_text(uint start, uint end) const;
bool check_argument_types_can_return_date(uint start, uint end) const;
bool check_argument_types_can_return_time(uint start, uint end) const;
void print_cast_temporal(String *str, enum_query_type query_type);
void print_schema_qualified_name(String *to,
const LEX_CSTRING &schema_name,
const LEX_CSTRING &function_name) const
{
// e.g. oracle_schema.func()
to->append(schema_name);
to->append('.');
to->append(function_name);
}
void print_sql_mode_qualified_name(String *to,
enum_query_type query_type,
const LEX_CSTRING &function_name) const
{
const Schema *func_schema= schema();
if (!func_schema || func_schema == Schema::find_implied(current_thd))
to->append(function_name);
else
print_schema_qualified_name(to, func_schema->name(), function_name);
}
void print_sql_mode_qualified_name(String *to, enum_query_type query_type)
const
{
return print_sql_mode_qualified_name(to, query_type, func_name_cstring());
}
void update_nullability_post_fix_fields();
bool aggregate_args2_for_comparison_with_conversion(THD *thd,
Type_handler_hybrid_field_type *th);
public:
table_map not_null_tables_cache= 0;
enum Functype { UNKNOWN_FUNC,EQ_FUNC,EQUAL_FUNC,NE_FUNC,LT_FUNC,LE_FUNC,
GE_FUNC,GT_FUNC,FT_FUNC,
LIKE_FUNC,ISNULL_FUNC,ISNOTNULL_FUNC,
COND_AND_FUNC, COND_OR_FUNC, XOR_FUNC,
BETWEEN, IN_FUNC, MULT_EQUAL_FUNC,
INTERVAL_FUNC, ISNOTNULLTEST_FUNC,
SP_EQUALS_FUNC, SP_DISJOINT_FUNC,SP_INTERSECTS_FUNC,
SP_TOUCHES_FUNC,SP_CROSSES_FUNC,SP_WITHIN_FUNC,
SP_CONTAINS_FUNC,SP_OVERLAPS_FUNC,
SP_STARTPOINT,SP_ENDPOINT,SP_EXTERIORRING,
SP_POINTN,SP_GEOMETRYN,SP_INTERIORRINGN, SP_RELATE_FUNC,
NOT_FUNC, NOT_ALL_FUNC, TEMPTABLE_ROWID,
NOW_FUNC, NOW_UTC_FUNC, SYSDATE_FUNC, TRIG_COND_FUNC,
SUSERVAR_FUNC, GUSERVAR_FUNC, COLLATE_FUNC,
EXTRACT_FUNC, CHAR_TYPECAST_FUNC, FUNC_SP, UDF_FUNC,
NEG_FUNC, GSYSVAR_FUNC, IN_OPTIMIZER_FUNC, DYNCOL_FUNC,
JSON_EXTRACT_FUNC, JSON_VALID_FUNC, ROWNUM_FUNC,
CASE_SEARCHED_FUNC, // Used by ColumnStore/Spider
CASE_SIMPLE_FUNC, // Used by ColumnStore/spider,
DATE_FUNC, YEAR_FUNC, SUBSTR_FUNC, LEFT_FUNC
};
/*
A function bitmap. Useful when some operation needs to be applied only
to certain functions. For now we only need to distinguish some
comparison predicates.
*/
enum Bitmap : ulonglong
{
BITMAP_NONE= 0,
BITMAP_EQ= 1ULL << EQ_FUNC,
BITMAP_EQUAL= 1ULL << EQUAL_FUNC,
BITMAP_NE= 1ULL << NE_FUNC,
BITMAP_LT= 1ULL << LT_FUNC,
BITMAP_LE= 1ULL << LE_FUNC,
BITMAP_GE= 1ULL << GE_FUNC,
BITMAP_GT= 1ULL << GT_FUNC,
BITMAP_LIKE= 1ULL << LIKE_FUNC,
BITMAP_BETWEEN= 1ULL << BETWEEN,
BITMAP_IN= 1ULL << IN_FUNC,
BITMAP_MULT_EQUAL= 1ULL << MULT_EQUAL_FUNC,
BITMAP_ISNULL= 1ULL << ISNULL_FUNC,
BITMAP_ISNOTNULL= 1ULL << ISNOTNULL_FUNC,
BITMAP_OTHER= 1ULL << 63,
BITMAP_ALL= 0xFFFFFFFFFFFFFFFFULL,
BITMAP_ANY_EQUALITY= BITMAP_EQ | BITMAP_EQUAL | BITMAP_MULT_EQUAL,
BITMAP_EXCEPT_ANY_EQUALITY= BITMAP_ALL & ~BITMAP_ANY_EQUALITY,
};
ulonglong bitmap_bit() const
{
Functype type= functype();
return 1ULL << (type > 63 ? 63 : type);
}
static scalar_comparison_op functype_to_scalar_comparison_op(Functype type)
{
switch (type) {
case EQ_FUNC: return SCALAR_CMP_EQ;
case EQUAL_FUNC: return SCALAR_CMP_EQUAL;
case LT_FUNC: return SCALAR_CMP_LT;
case LE_FUNC: return SCALAR_CMP_LE;
case GE_FUNC: return SCALAR_CMP_GE;
case GT_FUNC: return SCALAR_CMP_GT;
default: break;
}
DBUG_ASSERT(0);
return SCALAR_CMP_EQ;
}
enum Type type() const override { return FUNC_ITEM; }
virtual enum Functype functype() const { return UNKNOWN_FUNC; }
Item_func(THD *thd): Item_func_or_sum(thd)
{
DBUG_ASSERT(with_flags == item_with_t::NONE);
with_flags= item_with_t::NONE;
}
Item_func(THD *thd, Item *a): Item_func_or_sum(thd, a)
{
with_flags= a->with_flags;
}
Item_func(THD *thd, Item *a, Item *b):
Item_func_or_sum(thd, a, b)
{
with_flags= a->with_flags | b->with_flags;
}
Item_func(THD *thd, Item *a, Item *b, Item *c):
Item_func_or_sum(thd, a, b, c)
{
with_flags|= a->with_flags | b->with_flags | c->with_flags;
}
Item_func(THD *thd, Item *a, Item *b, Item *c, Item *d):
Item_func_or_sum(thd, a, b, c, d)
{
with_flags= a->with_flags | b->with_flags | c->with_flags | d->with_flags;
}
Item_func(THD *thd, Item *a, Item *b, Item *c, Item *d, Item* e):
Item_func_or_sum(thd, a, b, c, d, e)
{
with_flags= (a->with_flags | b->with_flags | c->with_flags | d->with_flags |
e->with_flags);
}
Item_func(THD *thd, List<Item> &list):
Item_func_or_sum(thd, list)
{
set_arguments(thd, list);
}
// Constructor used for Item_cond_and/or (see Item comment)
Item_func(THD *thd, Item_func *item):
Item_func_or_sum(thd, item),
not_null_tables_cache(item->not_null_tables_cache)
{ }
bool fix_fields(THD *, Item **ref) override;
void cleanup() override
{
Item_func_or_sum::cleanup();
used_tables_and_const_cache_init();
}
void fix_after_pullout(st_select_lex *new_parent, Item **ref, bool merge)
override;
void quick_fix_field() override;
table_map not_null_tables() const override;
void update_used_tables() override
{
used_tables_and_const_cache_init();
used_tables_and_const_cache_update_and_join(arg_count, args);
}
COND *build_equal_items(THD *thd, COND_EQUAL *inherited,
bool link_item_fields,
COND_EQUAL **cond_equal_ref) override;
SEL_TREE *get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) override
{
DBUG_ENTER("Item_func::get_mm_tree");
DBUG_RETURN(const_item() ? get_mm_tree_for_const(param) : NULL);
}
bool eq(const Item *item, bool binary_cmp) const override;
virtual Item *key_item() const { return args[0]; }
void set_arguments(THD *thd, List<Item> &list)
{
Item_args::set_arguments(thd, list);
sync_with_sum_func_and_with_field(list);
list.empty(); // Fields are used
}
void split_sum_func(THD *thd, Ref_ptr_array ref_pointer_array,
List<Item> &fields, uint flags) override;
void print(String *str, enum_query_type query_type) override;
void print_op(String *str, enum_query_type query_type);
void print_args(String *str, uint from, enum_query_type query_type) const;
void print_args_parenthesized(String *str, enum_query_type query_type) const
{
str->append('(');
print_args(str, 0, query_type);
str->append(')');
}
bool is_null() override
{
update_null_value();
return null_value;
}
String *val_str_from_val_str_ascii(String *str, String *str2);
void signal_divide_by_null();
friend class udf_handler;
Field *create_field_for_create_select(MEM_ROOT *root, TABLE *table) override
{ return tmp_table_field_from_field_type(root, table); }
Item *get_tmp_table_item(THD *thd) override;
void fix_char_length_ulonglong(ulonglong max_char_length_arg)
{
ulonglong max_result_length= max_char_length_arg *
collation.collation->mbmaxlen;
if (max_result_length >= MAX_BLOB_WIDTH)
{
max_length= MAX_BLOB_WIDTH;
set_maybe_null();
}
else
max_length= (uint32) max_result_length;
}
Item *transform(THD *thd, Item_transformer transformer, uchar *arg) override;
Item* compile(THD *thd, Item_analyzer analyzer, uchar **arg_p,
Item_transformer transformer, uchar *arg_t) override;
void traverse_cond(Cond_traverser traverser,
void * arg, traverse_order order) override;
bool eval_not_null_tables(void *opt_arg) override;
bool find_not_null_fields(table_map allowed) override;
// bool is_expensive_processor(void *arg);
// virtual bool is_expensive() { return 0; }
inline void raise_numeric_overflow(const char *type_name)
{
char buf[256];
String str(buf, sizeof(buf), system_charset_info);
str.length(0);
print(&str, QT_NO_DATA_EXPANSION);
my_error(ER_DATA_OUT_OF_RANGE, MYF(0), type_name, str.c_ptr_safe());
}
inline double raise_float_overflow()
{
raise_numeric_overflow("DOUBLE");
return 0.0;
}
inline longlong raise_integer_overflow()
{
raise_numeric_overflow(unsigned_flag ? "BIGINT UNSIGNED": "BIGINT");
return 0;
}
inline int raise_decimal_overflow()
{
raise_numeric_overflow("DECIMAL");
return E_DEC_OVERFLOW;
}
/**
Throw an error if the input double number is not finite, i.e. is either
+/-INF or NAN.
*/
inline double check_float_overflow(double value)
{
return std::isfinite(value) ? value : raise_float_overflow();
}
/**
Throw an error if the input BIGINT value represented by the
(longlong value, bool unsigned flag) pair cannot be returned by the
function, i.e. is not compatible with this Item's unsigned_flag.
*/
inline longlong check_integer_overflow(longlong value, bool val_unsigned)
{
return check_integer_overflow(Longlong_hybrid(value, val_unsigned));
}
// Check if the value is compatible with Item::unsigned_flag.
inline longlong check_integer_overflow(const Longlong_hybrid &sval)
{
Longlong_null res= sval.val_int(unsigned_flag);
return res.is_null() ? raise_integer_overflow() : res.value();
}
// Check if the value is compatible with Item::unsigned_flag.
longlong check_integer_overflow(const ULonglong_hybrid &uval)
{
Longlong_null res= uval.val_int(unsigned_flag);
return res.is_null() ? raise_integer_overflow() : res.value();
}
/**
Throw an error if the error code of a DECIMAL operation is E_DEC_OVERFLOW.
*/
inline int check_decimal_overflow(int error)
{
return (error == E_DEC_OVERFLOW) ? raise_decimal_overflow() : error;
}
bool has_timestamp_args()
{
DBUG_ASSERT(fixed());
for (uint i= 0; i < arg_count; i++)
{
if (args[i]->type() == Item::FIELD_ITEM &&
args[i]->field_type() == MYSQL_TYPE_TIMESTAMP)
return TRUE;
}
return FALSE;
}
bool has_date_args()
{
DBUG_ASSERT(fixed());
for (uint i= 0; i < arg_count; i++)
{
if (args[i]->type() == Item::FIELD_ITEM &&
(args[i]->field_type() == MYSQL_TYPE_DATE ||
args[i]->field_type() == MYSQL_TYPE_DATETIME))
return TRUE;
}
return FALSE;
}
bool has_time_args()
{
DBUG_ASSERT(fixed());
for (uint i= 0; i < arg_count; i++)
{
if (args[i]->type() == Item::FIELD_ITEM &&
(args[i]->field_type() == MYSQL_TYPE_TIME ||
args[i]->field_type() == MYSQL_TYPE_DATETIME))
return TRUE;
}
return FALSE;
}
bool has_datetime_args()
{
DBUG_ASSERT(fixed());
for (uint i= 0; i < arg_count; i++)
{
if (args[i]->type() == Item::FIELD_ITEM &&
args[i]->field_type() == MYSQL_TYPE_DATETIME)
return TRUE;
}
return FALSE;
}
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{
/*
By default only substitution for a field whose two different values
are never equal is allowed in the arguments of a function.
This is overruled for the direct arguments of comparison functions.
*/
Item_args::propagate_equal_fields(thd, Context_identity(), cond);
return this;
}
bool has_rand_bit()
{
return used_tables() & RAND_TABLE_BIT;
}
bool excl_dep_on_table(table_map tab_map) override
{
if (used_tables() & (OUTER_REF_TABLE_BIT | RAND_TABLE_BIT))
return false;
return !(used_tables() & ~tab_map) ||
Item_args::excl_dep_on_table(tab_map);
}
bool excl_dep_on_grouping_fields(st_select_lex *sel) override
{
if (has_rand_bit() || with_subquery())
return false;
return Item_args::excl_dep_on_grouping_fields(sel);
}
bool excl_dep_on_in_subq_left_part(Item_in_subselect *subq_pred) override
{
return Item_args::excl_dep_on_in_subq_left_part(subq_pred);
}
/*
We assume the result of any function that has a TIMESTAMP argument to be
timezone-dependent, since a TIMESTAMP value in both numeric and string
contexts is interpreted according to the current timezone.
The only exception is UNIX_TIMESTAMP() which returns the internal
representation of a TIMESTAMP argument verbatim, and thus does not depend on
the timezone.
*/
bool check_valid_arguments_processor(void *bool_arg) override
{
return has_timestamp_args();
}
bool find_function_processor (void *arg) override
{
return functype() == *(Functype *) arg;
}
void no_rows_in_result() override
{
for (uint i= 0; i < arg_count; i++)
{
args[i]->no_rows_in_result();
}
}
void restore_to_before_no_rows_in_result() override
{
for (uint i= 0; i < arg_count; i++)
{
args[i]->restore_to_before_no_rows_in_result();
}
}
void convert_const_compared_to_int_field(THD *thd);
Item_func *get_item_func() override { return this; }
bool is_simplified_cond_processor(void *) override
{ return const_item() && !val_bool(); }
};
class Item_real_func :public Item_func
{
public:
Item_real_func(THD *thd): Item_func(thd) { collation= DTCollation_numeric(); }
Item_real_func(THD *thd, Item *a): Item_func(thd, a)
{ collation= DTCollation_numeric(); }
Item_real_func(THD *thd, Item *a, Item *b): Item_func(thd, a, b)
{ collation= DTCollation_numeric(); }
Item_real_func(THD *thd, List<Item> &list): Item_func(thd, list)
{ collation= DTCollation_numeric(); }
String *val_str(String*str) override;
my_decimal *val_decimal(my_decimal *decimal_value) override;
longlong val_int() override
{
DBUG_ASSERT(fixed());
return Converter_double_to_longlong(val_real(), unsigned_flag).result();
}
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{ return get_date_from_real(thd, ltime, fuzzydate); }
const Type_handler *type_handler() const override
{ return &type_handler_double; }
bool fix_length_and_dec(THD *thd) override
{
decimals= NOT_FIXED_DEC;
max_length= float_length(decimals);
return FALSE;
}
};
/**
Functions whose returned field type is determined at fix_fields() time.
*/
class Item_hybrid_func: public Item_func,
public Type_handler_hybrid_field_type,
public Type_extra_attributes
{
protected:
bool fix_attributes(Item **item, uint nitems);
public:
Item_hybrid_func(THD *thd): Item_func(thd) { }
Item_hybrid_func(THD *thd, Item *a): Item_func(thd, a) { }
Item_hybrid_func(THD *thd, Item *a, Item *b): Item_func(thd, a, b) { }
Item_hybrid_func(THD *thd, Item *a, Item *b, Item *c):
Item_func(thd, a, b, c) { }
Item_hybrid_func(THD *thd, List<Item> &list): Item_func(thd, list) { }
Item_hybrid_func(THD *thd, Item_hybrid_func *item)
:Item_func(thd, item), Type_handler_hybrid_field_type(item) { }
const Type_handler *type_handler() const override
{ return Type_handler_hybrid_field_type::type_handler(); }
Type_extra_attributes *type_extra_attributes_addr() override
{
return this;
}
const Type_extra_attributes type_extra_attributes() const override
{
return *this;
}
void fix_length_and_dec_long_or_longlong(uint char_length, bool unsigned_arg)
{
collation= DTCollation_numeric();
unsigned_flag= unsigned_arg;
max_length= char_length;
set_handler(Type_handler::type_handler_long_or_longlong(char_length,
unsigned_arg));
}
void fix_length_and_dec_ulong_or_ulonglong_by_nbits(uint nbits)
{
uint digits= Type_handler_bit::Bit_decimal_notation_int_digits_by_nbits(nbits);
collation= DTCollation_numeric();
unsigned_flag= true;
max_length= digits;
if (nbits > 32)
set_handler(&type_handler_ulonglong);
else
set_handler(&type_handler_ulong);
}
};
class Item_handled_func: public Item_func
{
public:
class Handler
{
public:
virtual ~Handler() = default;
virtual String *val_str(Item_handled_func *, String *) const= 0;
virtual String *val_str_ascii(Item_handled_func *, String *) const= 0;
virtual double val_real(Item_handled_func *) const= 0;
virtual longlong val_int(Item_handled_func *) const= 0;
virtual my_decimal *val_decimal(Item_handled_func *, my_decimal *) const= 0;
virtual bool get_date(THD *thd, Item_handled_func *, MYSQL_TIME *, date_mode_t fuzzydate) const= 0;
virtual bool val_native(THD *thd, Item_handled_func *, Native *to) const
{
DBUG_ASSERT(0);
to->length(0);
return true;
}
virtual const Type_handler *
return_type_handler(const Item_handled_func *item) const= 0;
virtual const Type_handler *
type_handler_for_create_select(const Item_handled_func *item) const
{
return return_type_handler(item);
}
virtual bool fix_length_and_dec(Item_handled_func *) const= 0;
};
class Handler_str: public Handler
{
public:
String *val_str_ascii(Item_handled_func *item, String *str) const override
{
return item->Item::val_str_ascii(str);
}
double val_real(Item_handled_func *item) const override
{
DBUG_ASSERT(item->fixed());
StringBuffer<64> tmp;
String *res= item->val_str(&tmp);
return res ? item->double_from_string_with_check(res) : 0.0;
}
longlong val_int(Item_handled_func *item) const override
{
DBUG_ASSERT(item->fixed());
StringBuffer<22> tmp;
String *res= item->val_str(&tmp);
return res ? item->longlong_from_string_with_check(res) : 0;
}
my_decimal *val_decimal(Item_handled_func *item, my_decimal *to) const override
{
return item->val_decimal_from_string(to);
}
bool get_date(THD *thd, Item_handled_func *item, MYSQL_TIME *to,
date_mode_t fuzzydate) const override
{
return item->get_date_from_string(thd, to, fuzzydate);
}
};
/**
Abstract class for functions returning TIME, DATE, DATETIME or string values,
whose data type depends on parameters and is set at fix_fields time.
*/
class Handler_temporal: public Handler
{
public:
String *val_str(Item_handled_func *item, String *to) const override
{
StringBuffer<MAX_FIELD_WIDTH> ascii_buf;
return item->val_str_from_val_str_ascii(to, &ascii_buf);
}
};
/**
Abstract class for functions returning strings,
which are generated from get_date() results,
when get_date() can return different MYSQL_TIMESTAMP_XXX per row.
*/
class Handler_temporal_string: public Handler_temporal
{
public:
const Type_handler *return_type_handler(const Item_handled_func *) const override
{
return &type_handler_string;
}
const Type_handler *
type_handler_for_create_select(const Item_handled_func *item) const override
{
return return_type_handler(item)->type_handler_for_tmp_table(item);
}
double val_real(Item_handled_func *item) const override
{
return Temporal_hybrid(item).to_double();
}
longlong val_int(Item_handled_func *item) const override
{
return Temporal_hybrid(item).to_longlong();
}
my_decimal *val_decimal(Item_handled_func *item, my_decimal *to) const override
{
return Temporal_hybrid(item).to_decimal(to);
}
String *val_str_ascii(Item_handled_func *item, String *to) const override
{
return Temporal_hybrid(item).to_string(to, item->decimals);
}
};
class Handler_date: public Handler_temporal
{
public:
const Type_handler *return_type_handler(const Item_handled_func *) const override
{
return &type_handler_newdate;
}
bool fix_length_and_dec(Item_handled_func *item) const override
{
item->fix_attributes_date();
return false;
}
double val_real(Item_handled_func *item) const override
{
return Date(item).to_double();
}
longlong val_int(Item_handled_func *item) const override
{
return Date(item).to_longlong();
}
my_decimal *val_decimal(Item_handled_func *item, my_decimal *to) const override
{
return Date(item).to_decimal(to);
}
String *val_str_ascii(Item_handled_func *item, String *to) const override
{
return Date(item).to_string(to);
}
};
class Handler_time: public Handler_temporal
{
public:
const Type_handler *return_type_handler(const Item_handled_func *) const override
{
return &type_handler_time2;
}
double val_real(Item_handled_func *item) const override
{
return Time(item).to_double();
}
longlong val_int(Item_handled_func *item) const override
{
return Time(item).to_longlong();
}
my_decimal *val_decimal(Item_handled_func *item, my_decimal *to) const override
{
return Time(item).to_decimal(to);
}
String *val_str_ascii(Item_handled_func *item, String *to) const override
{
return Time(item).to_string(to, item->decimals);
}
bool val_native(THD *thd, Item_handled_func *item, Native *to) const override
{
return Time(thd, item).to_native(to, item->decimals);
}
};
class Handler_datetime: public Handler_temporal
{
public:
const Type_handler *return_type_handler(const Item_handled_func *) const override
{
return &type_handler_datetime2;
}
double val_real(Item_handled_func *item) const override
{
return Datetime(item).to_double();
}
longlong val_int(Item_handled_func *item) const override
{
return Datetime(item).to_longlong();
}
my_decimal *val_decimal(Item_handled_func *item, my_decimal *to) const override
{
return Datetime(item).to_decimal(to);
}
String *val_str_ascii(Item_handled_func *item, String *to) const override
{
return Datetime(item).to_string(to, item->decimals);
}
};
class Handler_int: public Handler
{
public:
String *val_str(Item_handled_func *item, String *to) const override
{
longlong nr= val_int(item);
if (item->null_value)
return 0;
to->set_int(nr, item->unsigned_flag, item->collation.collation);
return to;
}
String *val_str_ascii(Item_handled_func *item, String *to) const override
{
return item->Item::val_str_ascii(to);
}
double val_real(Item_handled_func *item) const override
{
return item->unsigned_flag ? (double) ((ulonglong) val_int(item)) :
(double) val_int(item);
}
my_decimal *val_decimal(Item_handled_func *item, my_decimal *to) const override
{
return item->val_decimal_from_int(to);
}
bool get_date(THD *thd, Item_handled_func *item,
MYSQL_TIME *to, date_mode_t fuzzydate) const override
{
return item->get_date_from_int(thd, to, fuzzydate);
}
longlong val_int(Item_handled_func *item) const override
{
Longlong_null tmp= to_longlong_null(item);
item->null_value= tmp.is_null();
return tmp.value();
}
virtual Longlong_null to_longlong_null(Item_handled_func *item) const= 0;
};
class Handler_slong: public Handler_int
{
public:
const Type_handler *return_type_handler(const Item_handled_func *item) const override
{
return &type_handler_slong;
}
bool fix_length_and_dec(Item_handled_func *item) const override
{
item->unsigned_flag= false;
item->collation= DTCollation_numeric();
item->fix_char_length(11);
return false;
}
};
class Handler_slong2: public Handler_slong
{
public:
bool fix_length_and_dec(Item_handled_func *func) const override
{
bool rc= Handler_slong::fix_length_and_dec(func);
func->max_length= 2;
return rc;
}
};
class Handler_ulonglong: public Handler_int
{
public:
const Type_handler *return_type_handler(const Item_handled_func *item) const override
{
return &type_handler_ulonglong;
}
bool fix_length_and_dec(Item_handled_func *item) const override
{
item->unsigned_flag= true;
item->collation= DTCollation_numeric();
item->fix_char_length(21);
return false;
}
};
protected:
const Handler *m_func_handler;
public:
Item_handled_func(THD *thd, Item *a)
:Item_func(thd, a), m_func_handler(NULL) { }
Item_handled_func(THD *thd, Item *a, Item *b)
:Item_func(thd, a, b), m_func_handler(NULL) { }
void set_func_handler(const Handler *handler)
{
m_func_handler= handler;
}
const Type_handler *type_handler() const override
{
return m_func_handler->return_type_handler(this);
}
Field *create_field_for_create_select(MEM_ROOT *root, TABLE *table) override
{
DBUG_ASSERT(fixed());
const Type_handler *h= m_func_handler->type_handler_for_create_select(this);
return h->make_and_init_table_field(root, &name,
Record_addr(maybe_null()),
*this, table);
}
String *val_str(String *to) override
{
return m_func_handler->val_str(this, to);
}
String *val_str_ascii(String *to) override
{
return m_func_handler->val_str_ascii(this, to);
}
double val_real() override
{
return m_func_handler->val_real(this);
}
longlong val_int() override
{
return m_func_handler->val_int(this);
}
my_decimal *val_decimal(my_decimal *to) override
{
return m_func_handler->val_decimal(this, to);
}
bool get_date(THD *thd, MYSQL_TIME *to, date_mode_t fuzzydate) override
{
return m_func_handler->get_date(thd, this, to, fuzzydate);
}
bool val_native(THD *thd, Native *to) override
{
return m_func_handler->val_native(thd, this, to);
}
};
/**
Functions that at fix_fields() time determine the returned field type,
trying to preserve the exact data type of the arguments.
The descendants have to implement "native" value methods,
i.e. str_op(), date_op(), int_op(), real_op(), decimal_op().
fix_fields() chooses which of the above value methods will be
used during execution time, according to the returned field type.
For example, if fix_fields() determines that the returned value type
is MYSQL_TYPE_LONG, then:
- int_op() is chosen as the execution time native method.
- val_int() returns the result of int_op() as is.
- all other methods, i.e. val_real(), val_decimal(), val_str(), get_date(),
call int_op() first, then convert the result to the requested data type.
*/
class Item_func_hybrid_field_type: public Item_hybrid_func
{
/*
Helper methods to make sure that the result of
decimal_op(), str_op() and date_op() is properly synched with null_value.
*/
bool date_op_with_null_check(THD *thd, MYSQL_TIME *ltime)
{
bool rc= date_op(thd, ltime, date_mode_t(0));
DBUG_ASSERT(!rc ^ null_value);
return rc;
}
bool time_op_with_null_check(THD *thd, MYSQL_TIME *ltime)
{
bool rc= time_op(thd, ltime);
DBUG_ASSERT(!rc ^ null_value);
DBUG_ASSERT(rc || ltime->time_type == MYSQL_TIMESTAMP_TIME);
return rc;
}
String *str_op_with_null_check(String *str)
{
String *res= str_op(str);
DBUG_ASSERT((res != NULL) ^ null_value);
return res;
}
public:
// Value methods that involve no conversion
String *val_str_from_str_op(String *str)
{
return str_op_with_null_check(&str_value);
}
longlong val_int_from_int_op()
{
return int_op();
}
double val_real_from_real_op()
{
return real_op();
}
// Value methods that involve conversion
String *val_str_from_real_op(String *str);
String *val_str_from_int_op(String *str);
String *val_str_from_date_op(String *str);
String *val_str_from_time_op(String *str);
my_decimal *val_decimal_from_str_op(my_decimal *dec);
my_decimal *val_decimal_from_real_op(my_decimal *dec);
my_decimal *val_decimal_from_int_op(my_decimal *dec);
my_decimal *val_decimal_from_date_op(my_decimal *dec);
my_decimal *val_decimal_from_time_op(my_decimal *dec);
longlong val_int_from_str_op();
longlong val_int_from_real_op();
longlong val_int_from_date_op();
longlong val_int_from_time_op();
double val_real_from_str_op();
double val_real_from_date_op();
double val_real_from_time_op();
double val_real_from_int_op();
public:
Item_func_hybrid_field_type(THD *thd):
Item_hybrid_func(thd)
{ collation= DTCollation_numeric(); }
Item_func_hybrid_field_type(THD *thd, Item *a):
Item_hybrid_func(thd, a)
{ collation= DTCollation_numeric(); }
Item_func_hybrid_field_type(THD *thd, Item *a, Item *b):
Item_hybrid_func(thd, a, b)
{ collation= DTCollation_numeric(); }
Item_func_hybrid_field_type(THD *thd, Item *a, Item *b, Item *c):
Item_hybrid_func(thd, a, b, c)
{ collation= DTCollation_numeric(); }
Item_func_hybrid_field_type(THD *thd, List<Item> &list):
Item_hybrid_func(thd, list)
{ collation= DTCollation_numeric(); }
double val_real() override
{
DBUG_ASSERT(fixed());
return Item_func_hybrid_field_type::type_handler()->
Item_func_hybrid_field_type_val_real(this);
}
longlong val_int() override
{
DBUG_ASSERT(!is_cond());
DBUG_ASSERT(fixed());
return Item_func_hybrid_field_type::type_handler()->
Item_func_hybrid_field_type_val_int(this);
}
my_decimal *val_decimal(my_decimal *dec) override
{
DBUG_ASSERT(fixed());
return Item_func_hybrid_field_type::type_handler()->
Item_func_hybrid_field_type_val_decimal(this, dec);
}
String *val_str(String*str) override
{
DBUG_ASSERT(fixed());
String *res= Item_func_hybrid_field_type::type_handler()->
Item_func_hybrid_field_type_val_str(this, str);
DBUG_ASSERT(null_value == (res == NULL));
return res;
}
bool get_date(THD *thd, MYSQL_TIME *to, date_mode_t mode) override
{
DBUG_ASSERT(fixed());
return Item_func_hybrid_field_type::type_handler()->
Item_func_hybrid_field_type_get_date_with_warn(thd, this, to, mode);
}
bool val_native(THD *thd, Native *to) override
{
DBUG_ASSERT(fixed());
return native_op(thd, to);
}
/**
@brief Performs the operation that this functions implements when the
result type is INT.
@return The result of the operation.
*/
virtual longlong int_op()= 0;
Longlong_null to_longlong_null_op()
{
longlong nr= int_op();
/*
C++ does not guarantee the order of parameter evaluation,
so to make sure "null_value" is passed to the constructor
after the int_op() call, int_op() is caled on a separate line.
*/
return Longlong_null(nr, null_value);
}
Longlong_hybrid_null to_longlong_hybrid_null_op()
{
return Longlong_hybrid_null(to_longlong_null_op(), unsigned_flag);
}
/**
@brief Performs the operation that this functions implements when the
result type is REAL.
@return The result of the operation.
*/
virtual double real_op()= 0;
Double_null to_double_null_op()
{
// val_real() must be caleed on a separate line. See to_longlong_null()
double nr= real_op();
return Double_null(nr, null_value);
}
/**
@brief Performs the operation that this functions implements when the
result type is DECIMAL.
@param A pointer where the DECIMAL value will be allocated.
@return
- 0 If the result is NULL
- The same pointer it was given, with the area initialized to the
result of the operation.
*/
virtual my_decimal *decimal_op(my_decimal *)= 0;
/**
@brief Performs the operation that this functions implements when the
result type is a string type.
@return The result of the operation.
*/
virtual String *str_op(String *)= 0;
/**
@brief Performs the operation that this functions implements when
field type is DATETIME or DATE.
@return The result of the operation.
*/
virtual bool date_op(THD *thd, MYSQL_TIME *res, date_mode_t fuzzydate)= 0;
/**
@brief Performs the operation that this functions implements when
field type is TIME.
@return The result of the operation.
*/
virtual bool time_op(THD *thd, MYSQL_TIME *res)= 0;
virtual bool native_op(THD *thd, Native *native)= 0;
};
/*
This class resembles SQL standard CASE-alike expressions:
CASE and its abbreviations COALESCE, NULLIF, IFNULL, IF.
<case expression> ::= <case abbreviation>
| <case specification>
*/
class Item_func_case_expression: public Item_func_hybrid_field_type
{
public:
Item_func_case_expression(THD *thd)
:Item_func_hybrid_field_type(thd)
{ }
Item_func_case_expression(THD *thd, Item *a)
:Item_func_hybrid_field_type(thd, a)
{ }
Item_func_case_expression(THD *thd, Item *a, Item *b)
:Item_func_hybrid_field_type(thd, a, b)
{ }
Item_func_case_expression(THD *thd, Item *a, Item *b, Item *c)
:Item_func_hybrid_field_type(thd, a, b, c)
{ }
Item_func_case_expression(THD *thd, List<Item> &list):
Item_func_hybrid_field_type(thd, list)
{ }
bool find_not_null_fields(table_map allowed) override { return false; }
};
class Item_func_numhybrid: public Item_func_hybrid_field_type
{
protected:
inline void fix_decimals()
{
DBUG_ASSERT(result_type() == DECIMAL_RESULT);
if (decimals == NOT_FIXED_DEC)
set_if_smaller(decimals, max_length - 1);
}
public:
Item_func_numhybrid(THD *thd): Item_func_hybrid_field_type(thd)
{ }
Item_func_numhybrid(THD *thd, Item *a): Item_func_hybrid_field_type(thd, a)
{ }
Item_func_numhybrid(THD *thd, Item *a, Item *b):
Item_func_hybrid_field_type(thd, a, b)
{ }
Item_func_numhybrid(THD *thd, Item *a, Item *b, Item *c):
Item_func_hybrid_field_type(thd, a, b, c)
{ }
Item_func_numhybrid(THD *thd, List<Item> &list):
Item_func_hybrid_field_type(thd, list)
{ }
String *str_op(String *str) override { DBUG_ASSERT(0); return 0; }
bool date_op(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{
DBUG_ASSERT(0);
return true;
}
bool time_op(THD *thd, MYSQL_TIME *ltime) override
{
DBUG_ASSERT(0);
return true;
}
bool native_op(THD *thd, Native *to) override
{
DBUG_ASSERT(0);
return true;
}
};
/* function where type of result detected by first argument */
class Item_func_num1: public Item_func_numhybrid
{
public:
Item_func_num1(THD *thd, Item *a): Item_func_numhybrid(thd, a) {}
Item_func_num1(THD *thd, Item *a, Item *b): Item_func_numhybrid(thd, a, b) {}
bool check_partition_func_processor(void *int_arg) override { return FALSE; }
bool check_vcol_func_processor(void *arg) override { return FALSE; }
};
/* Base class for operations like '+', '-', '*' */
class Item_num_op :public Item_func_numhybrid
{
protected:
bool check_arguments() const override
{
return false; // Checked by aggregate_for_num_op()
}
public:
Item_num_op(THD *thd, Item *a, Item *b): Item_func_numhybrid(thd, a, b) {}
virtual void result_precision()= 0;
void print(String *str, enum_query_type query_type) override
{
print_op(str, query_type);
}
bool fix_type_handler(const Type_aggregator *aggregator);
void fix_length_and_dec_double()
{
aggregate_numeric_attributes_real(args, arg_count);
max_length= float_length(decimals);
}
void fix_length_and_dec_decimal()
{
unsigned_flag= args[0]->unsigned_flag & args[1]->unsigned_flag;
result_precision();
fix_decimals();
}
void fix_length_and_dec_int()
{
unsigned_flag= args[0]->unsigned_flag | args[1]->unsigned_flag;
result_precision();
decimals= 0;
set_handler(type_handler_long_or_longlong());
}
void fix_length_and_dec_temporal(bool downcast_decimal_to_int)
{
set_handler(&type_handler_newdecimal);
fix_length_and_dec_decimal();
if (decimals == 0 && downcast_decimal_to_int)
set_handler(type_handler_long_or_longlong());
}
bool need_parentheses_in_default() override { return true; }
};
class Item_int_func :public Item_func
{
public:
/*
QQ: shouldn't 20 characters be enough:
Max unsigned = 18,446,744,073,709,551,615 = 20 digits, 20 characters
Max signed = 9,223,372,036,854,775,807 = 19 digits, 19 characters
Min signed = -9,223,372,036,854,775,808 = 19 digits, 20 characters
*/
Item_int_func(THD *thd): Item_func(thd)
{ collation= DTCollation_numeric(); fix_char_length(21); }
Item_int_func(THD *thd, Item *a): Item_func(thd, a)
{ collation= DTCollation_numeric(); fix_char_length(21); }
Item_int_func(THD *thd, Item *a, Item *b): Item_func(thd, a, b)
{ collation= DTCollation_numeric(); fix_char_length(21); }
Item_int_func(THD *thd, Item *a, Item *b, Item *c): Item_func(thd, a, b, c)
{ collation= DTCollation_numeric(); fix_char_length(21); }
Item_int_func(THD *thd, Item *a, Item *b, Item *c, Item *d):
Item_func(thd, a, b, c, d)
{ collation= DTCollation_numeric(); fix_char_length(21); }
Item_int_func(THD *thd, List<Item> &list): Item_func(thd, list)
{ collation= DTCollation_numeric(); fix_char_length(21); }
Item_int_func(THD *thd, Item_int_func *item) :Item_func(thd, item)
{ collation= DTCollation_numeric(); }
double val_real() override;
String *val_str(String*str) override;
my_decimal *val_decimal(my_decimal *decimal_value) override
{
return val_decimal_from_int(decimal_value);
}
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{ return get_date_from_int(thd, ltime, fuzzydate); }
const Type_handler *type_handler() const override= 0;
bool fix_length_and_dec(THD *thd) override { return FALSE; }
};
class Item_long_func: public Item_int_func
{
public:
Item_long_func(THD *thd): Item_int_func(thd) { }
Item_long_func(THD *thd, Item *a): Item_int_func(thd, a) {}
Item_long_func(THD *thd, Item *a, Item *b): Item_int_func(thd, a, b) {}
Item_long_func(THD *thd, Item *a, Item *b, Item *c): Item_int_func(thd, a, b, c) {}
Item_long_func(THD *thd, List<Item> &list): Item_int_func(thd, list) { }
Item_long_func(THD *thd, Item_long_func *item) :Item_int_func(thd, item) {}
const Type_handler *type_handler() const override
{
if (unsigned_flag)
return &type_handler_ulong;
return &type_handler_slong;
}
bool fix_length_and_dec(THD *thd) override { max_length= 11; return FALSE; }
};
class Item_long_ge0_func: public Item_int_func
{
public:
Item_long_ge0_func(THD *thd): Item_int_func(thd) { }
Item_long_ge0_func(THD *thd, Item *a): Item_int_func(thd, a) {}
Item_long_ge0_func(THD *thd, Item *a, Item *b): Item_int_func(thd, a, b) {}
Item_long_ge0_func(THD *thd, Item *a, Item *b, Item *c): Item_int_func(thd, a, b, c) {}
Item_long_ge0_func(THD *thd, List<Item> &list): Item_int_func(thd, list) { }
Item_long_ge0_func(THD *thd, Item_long_ge0_func *item) :Item_int_func(thd, item) {}
const Type_handler *type_handler() const override
{
DBUG_ASSERT(!unsigned_flag);
return &type_handler_slong_ge0;
}
bool fix_length_and_dec(THD *) override { max_length= 10; return FALSE; }
};
class Item_func_hash: public Item_int_func
{
public:
Item_func_hash(THD *thd, List<Item> &item): Item_int_func(thd, item)
{}
longlong val_int() override;
bool fix_length_and_dec(THD *thd) override;
const Type_handler *type_handler() const override
{ return &type_handler_slong; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_hash>(thd, this); }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<hash>") };
return name;
}
};
class Item_func_hash_mariadb_100403: public Item_func_hash
{
public:
Item_func_hash_mariadb_100403(THD *thd, List<Item> &item)
:Item_func_hash(thd, item)
{}
longlong val_int() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_hash_mariadb_100403>(thd, this); }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<hash_mariadb_100403>") };
return name;
}
};
class Item_longlong_func: public Item_int_func
{
public:
Item_longlong_func(THD *thd): Item_int_func(thd) { }
Item_longlong_func(THD *thd, Item *a): Item_int_func(thd, a) {}
Item_longlong_func(THD *thd, Item *a, Item *b): Item_int_func(thd, a, b) {}
Item_longlong_func(THD *thd, Item *a, Item *b, Item *c): Item_int_func(thd, a, b, c) {}
Item_longlong_func(THD *thd, Item *a, Item *b, Item *c, Item *d):
Item_int_func(thd, a, b, c, d) {}
Item_longlong_func(THD *thd, List<Item> &list): Item_int_func(thd, list) { }
Item_longlong_func(THD *thd, Item_longlong_func *item) :Item_int_func(thd, item) {}
const Type_handler *type_handler() const override
{
if (unsigned_flag)
return &type_handler_ulonglong;
return &type_handler_slonglong;
}
};
class Cursor_ref
{
protected:
LEX_CSTRING m_cursor_name;
uint m_cursor_offset;
class sp_cursor *get_open_cursor_or_error();
Cursor_ref(const LEX_CSTRING *name, uint offset)
:m_cursor_name(*name), m_cursor_offset(offset)
{ }
void print_func(String *str, const LEX_CSTRING &func_name);
};
class Item_func_cursor_rowcount: public Item_longlong_func,
public Cursor_ref
{
public:
Item_func_cursor_rowcount(THD *thd, const LEX_CSTRING *name, uint offset)
:Item_longlong_func(thd), Cursor_ref(name, offset)
{
set_maybe_null();
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("%ROWCOUNT") };
return name;
}
longlong val_int() override;
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
{
return Cursor_ref::print_func(str, func_name_cstring());
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_cursor_rowcount>(thd, this); }
};
class Item_func_connection_id :public Item_long_func
{
longlong value;
public:
Item_func_connection_id(THD *thd): Item_long_func(thd) { unsigned_flag=1; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("connection_id") };
return name;
}
bool fix_length_and_dec(THD *thd) override;
bool fix_fields(THD *thd, Item **ref) override;
longlong val_int() override { DBUG_ASSERT(fixed()); return value; }
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg,
VCOL_SESSION_FUNC);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_connection_id>(thd, this); }
};
class Item_func_signed :public Item_int_func
{
public:
Item_func_signed(THD *thd, Item *a): Item_int_func(thd, a)
{
unsigned_flag= 0;
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("cast_as_signed") };
return name;
}
const Type_handler *type_handler() const override
{
return Type_handler::type_handler_long_or_longlong(max_char_length(),
false);
}
longlong val_int() override
{
longlong value= args[0]->val_int_signed_typecast();
null_value= args[0]->null_value;
return value;
}
void fix_length_and_dec_double()
{
fix_char_length(MAX_BIGINT_WIDTH);
}
void fix_length_and_dec_sint_ge0()
{
uint32 digits= args[0]->decimal_precision();
DBUG_ASSERT(digits > 0);
DBUG_ASSERT(digits <= MY_INT64_NUM_DECIMAL_DIGITS);
fix_char_length(digits + (unsigned_flag ? 0 : 1/*sign*/));
}
void fix_length_and_dec_generic()
{
uint32 char_length= MY_MIN(args[0]->max_char_length(),
MY_INT64_NUM_DECIMAL_DIGITS);
/*
args[0]->max_char_length() can return 0.
Reserve max_length to fit at least one character for one digit,
plus one character for the sign (if signed).
*/
set_if_bigger(char_length, 1U + (unsigned_flag ? 0 : 1));
fix_char_length(char_length);
}
void fix_length_and_dec_string()
{
/*
For strings, use decimal_int_part() instead of max_char_length().
This is important for Item_hex_hybrid:
SELECT CAST(0x1FFFFFFFF AS SIGNED);
Length is 5, decimal_int_part() is 13.
*/
uint32 char_length= MY_MIN(args[0]->decimal_int_part(),
MY_INT64_NUM_DECIMAL_DIGITS);
set_if_bigger(char_length, 1U + (unsigned_flag ? 0 : 1));
fix_char_length(char_length);
}
bool fix_length_and_dec(THD *thd) override
{
return args[0]->type_handler()->Item_func_signed_fix_length_and_dec(this);
}
void print(String *str, enum_query_type query_type) override;
decimal_digits_t decimal_precision() const override
{ return args[0]->decimal_precision(); }
bool need_parentheses_in_default() override { return true; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_signed>(thd, this); }
};
class Item_func_unsigned :public Item_func_signed
{
public:
Item_func_unsigned(THD *thd, Item *a): Item_func_signed(thd, a)
{
unsigned_flag= 1;
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("cast_as_unsigned") };
return name;
}
const Type_handler *type_handler() const override
{
if (max_char_length() <= MY_INT32_NUM_DECIMAL_DIGITS - 1)
return &type_handler_ulong;
return &type_handler_ulonglong;
}
longlong val_int() override
{
longlong value= args[0]->val_int_unsigned_typecast();
null_value= args[0]->null_value;
return value;
}
bool fix_length_and_dec(THD *thd) override
{
return args[0]->type_handler()->Item_func_unsigned_fix_length_and_dec(this);
}
decimal_digits_t decimal_precision() const override { return max_length; }
void print(String *str, enum_query_type query_type) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_unsigned>(thd, this); }
};
class Item_decimal_typecast :public Item_func
{
my_decimal decimal_value;
public:
Item_decimal_typecast(THD *thd, Item *a, uint len, decimal_digits_t dec)
:Item_func(thd, a)
{
decimals= dec;
collation= DTCollation_numeric();
fix_char_length(my_decimal_precision_to_length_no_truncation(len, dec,
unsigned_flag));
}
String *val_str(String *str) override { return VDec(this).to_string(str); }
double val_real() override { return VDec(this).to_double(); }
longlong val_int() override { return VDec(this).to_longlong(unsigned_flag); }
my_decimal *val_decimal(my_decimal*) override;
bool get_date(THD *thd, MYSQL_TIME *to, date_mode_t mode) override
{
return decimal_to_datetime_with_warn(thd, VDec(this).ptr(), to, mode,
NULL, NULL);
}
const Type_handler *type_handler() const override
{ return &type_handler_newdecimal; }
void fix_length_and_dec_generic() {}
bool fix_length_and_dec(THD *thd) override
{
return
args[0]->type_handler()->Item_decimal_typecast_fix_length_and_dec(this);
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("decimal_typecast") };
return name;
}
void print(String *str, enum_query_type query_type) override;
bool need_parentheses_in_default() override { return true; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_decimal_typecast>(thd, this); }
};
class Item_real_typecast: public Item_real_func
{
protected:
double val_real_with_truncate(double max_value);
public:
Item_real_typecast(THD *thd, Item *a, uint len, uint dec)
:Item_real_func(thd, a)
{
decimals= (uint8) dec;
max_length= (uint32) len;
}
bool need_parentheses_in_default() override { return true; }
void print(String *str, enum_query_type query_type) override;
void fix_length_and_dec_generic()
{
set_maybe_null();
}
};
class Item_float_typecast :public Item_real_typecast
{
public:
Item_float_typecast(THD *thd, Item *a)
:Item_real_typecast(thd, a, MAX_FLOAT_STR_LENGTH, NOT_FIXED_DEC)
{ }
const Type_handler *type_handler() const override
{ return &type_handler_float; }
bool fix_length_and_dec(THD *thd) override
{
return
args[0]->type_handler()->Item_float_typecast_fix_length_and_dec(this);
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("float_typecast") };
return name;
}
double val_real() override
{
return (double) (float) val_real_with_truncate(FLT_MAX);
}
String *val_str(String*str) override
{
Float nr(Item_float_typecast::val_real());
if (null_value)
return 0;
nr.to_string(str, decimals);
return str;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_float_typecast>(thd, this); }
};
class Item_double_typecast :public Item_real_typecast
{
public:
Item_double_typecast(THD *thd, Item *a, uint len, uint dec):
Item_real_typecast(thd, a, len, dec)
{ }
bool fix_length_and_dec(THD *thd) override
{
return
args[0]->type_handler()->Item_double_typecast_fix_length_and_dec(this);
}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("double_typecast") };
return name;
}
double val_real() override { return val_real_with_truncate(DBL_MAX); }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_double_typecast>(thd, this); }
};
class Item_func_additive_op :public Item_num_op
{
public:
Item_func_additive_op(THD *thd, Item *a, Item *b): Item_num_op(thd, a, b) {}
void result_precision() override;
bool check_partition_func_processor(void *int_arg) override {return FALSE;}
bool check_vcol_func_processor(void *arg) override { return FALSE;}
};
class Item_func_plus :public Item_func_additive_op
{
public:
Item_func_plus(THD *thd, Item *a, Item *b):
Item_func_additive_op(thd, a, b) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("+") };
return name;
}
enum precedence precedence() const override { return ADD_PRECEDENCE; }
bool fix_length_and_dec(THD *thd) override;
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_plus>(thd, this); }
};
class Item_func_minus :public Item_func_additive_op
{
bool m_depends_on_sql_mode_no_unsigned_subtraction;
public:
Item_func_minus(THD *thd, Item *a, Item *b):
Item_func_additive_op(thd, a, b),
m_depends_on_sql_mode_no_unsigned_subtraction(false)
{ }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("-") };
return name;
}
enum precedence precedence() const override { return ADD_PRECEDENCE; }
Sql_mode_dependency value_depends_on_sql_mode() const override;
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
bool fix_length_and_dec(THD *thd) override;
void fix_unsigned_flag();
void fix_length_and_dec_double()
{
Item_func_additive_op::fix_length_and_dec_double();
fix_unsigned_flag();
}
void fix_length_and_dec_decimal()
{
Item_func_additive_op::fix_length_and_dec_decimal();
fix_unsigned_flag();
}
void fix_length_and_dec_int()
{
Item_func_additive_op::fix_length_and_dec_int();
fix_unsigned_flag();
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_minus>(thd, this); }
};
class Item_func_mul :public Item_num_op
{
public:
Item_func_mul(THD *thd, Item *a, Item *b):
Item_num_op(thd, a, b) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("*") };
return name;
}
enum precedence precedence() const override { return MUL_PRECEDENCE; }
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
void result_precision() override;
bool fix_length_and_dec(THD *thd) override;
bool check_partition_func_processor(void *int_arg) override {return FALSE;}
bool check_vcol_func_processor(void *arg) override { return FALSE;}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_mul>(thd, this); }
};
class Item_func_div :public Item_num_op
{
public:
uint prec_increment;
Item_func_div(THD *thd, Item *a, Item *b): Item_num_op(thd, a, b) {}
longlong int_op() override { DBUG_ASSERT(0); return 0; }
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("/") };
return name;
}
enum precedence precedence() const override { return MUL_PRECEDENCE; }
bool fix_length_and_dec(THD *thd) override;
void fix_length_and_dec_double();
void fix_length_and_dec_int();
void result_precision() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_div>(thd, this); }
};
class Item_func_int_div :public Item_int_func
{
public:
Item_func_int_div(THD *thd, Item *a, Item *b): Item_int_func(thd, a, b)
{}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("DIV") };
return name;
}
enum precedence precedence() const override { return MUL_PRECEDENCE; }
const Type_handler *type_handler() const override
{ return type_handler_long_or_longlong(); }
bool fix_length_and_dec(THD *thd) override;
void print(String *str, enum_query_type query_type) override
{
print_op(str, query_type);
}
bool check_partition_func_processor(void *int_arg) override {return FALSE;}
bool check_vcol_func_processor(void *arg) override { return FALSE;}
bool need_parentheses_in_default() override { return true; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_int_div>(thd, this); }
};
class Item_func_mod :public Item_num_op
{
public:
Item_func_mod(THD *thd, Item *a, Item *b): Item_num_op(thd, a, b) {}
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("MOD") };
return name;
}
enum precedence precedence() const override { return MUL_PRECEDENCE; }
void result_precision() override;
bool fix_length_and_dec(THD *thd) override;
void fix_length_and_dec_double()
{
Item_num_op::fix_length_and_dec_double();
unsigned_flag= args[0]->unsigned_flag;
}
void fix_length_and_dec_decimal()
{
result_precision();
fix_decimals();
}
void fix_length_and_dec_int()
{
result_precision();
DBUG_ASSERT(decimals == 0);
set_handler(type_handler_long_or_longlong());
}
bool check_partition_func_processor(void *int_arg) override {return FALSE;}
bool check_vcol_func_processor(void *arg) override { return FALSE;}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_mod>(thd, this); }
};
class Item_func_neg :public Item_func_num1
{
public:
Item_func_neg(THD *thd, Item *a): Item_func_num1(thd, a) {}
double real_op() override;
longlong int_op() override;
my_decimal *decimal_op(my_decimal *) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("-") };
return name;
}
enum Functype functype() const override { return NEG_FUNC; }
enum precedence precedence() const override { return NEG_PRECEDENCE; }
void print(String *str, enum_query_type query_type) override
{
str->append(func_name_cstring());
args[0]->print_parenthesised(str, query_type, precedence());
}
void fix_length_and_dec_int();
void fix_length_and_dec_double();
void fix_length_and_dec_decimal();
bool fix_length_and_dec(THD *thd) override;
decimal_digits_t decimal_precision() const override
{ return args[0]->decimal_precision(); }
bool need_parentheses_in_default() override { return true; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_neg>(thd, this); }
};
class Item_func_abs :public Item_func_num1
{
public:
Item_func_abs(THD *thd, Item *a): Item_func_num1(thd, a) {}
double real_op() override;
longlong int_op() override;
my_decimal *decimal_op(my_decimal *) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("abs") };
return name;
}
void fix_length_and_dec_int();
void fix_length_and_dec_sint_ge0();
void fix_length_and_dec_double();
void fix_length_and_dec_decimal();
bool fix_length_and_dec(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_abs>(thd, this); }
};
// A class to handle logarithmic and trigonometric functions
class Item_dec_func :public Item_real_func
{
bool check_arguments() const override
{ return check_argument_types_can_return_real(0, arg_count); }
public:
Item_dec_func(THD *thd, Item *a): Item_real_func(thd, a) {}
Item_dec_func(THD *thd, Item *a, Item *b): Item_real_func(thd, a, b) {}
bool fix_length_and_dec(THD *thd) override
{
decimals= NOT_FIXED_DEC;
max_length= float_length(decimals);
set_maybe_null();
return FALSE;
}
};
class Item_func_exp :public Item_dec_func
{
public:
Item_func_exp(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("exp") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_exp>(thd, this); }
};
class Item_func_ln :public Item_dec_func
{
public:
Item_func_ln(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("ln") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ln>(thd, this); }
};
class Item_func_log :public Item_dec_func
{
public:
Item_func_log(THD *thd, Item *a): Item_dec_func(thd, a) {}
Item_func_log(THD *thd, Item *a, Item *b): Item_dec_func(thd, a, b) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("log") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_log>(thd, this); }
};
class Item_func_log2 :public Item_dec_func
{
public:
Item_func_log2(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("log2") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_log2>(thd, this); }
};
class Item_func_log10 :public Item_dec_func
{
public:
Item_func_log10(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("log10") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_log10>(thd, this); }
};
class Item_func_sqrt :public Item_dec_func
{
public:
Item_func_sqrt(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("sqrt") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_sqrt>(thd, this); }
};
class Item_func_pow :public Item_dec_func
{
public:
Item_func_pow(THD *thd, Item *a, Item *b): Item_dec_func(thd, a, b) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("pow") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_pow>(thd, this); }
};
class Item_func_acos :public Item_dec_func
{
public:
Item_func_acos(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("acos") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_acos>(thd, this); }
};
class Item_func_asin :public Item_dec_func
{
public:
Item_func_asin(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("asin") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_asin>(thd, this); }
};
class Item_func_atan :public Item_dec_func
{
public:
Item_func_atan(THD *thd, Item *a): Item_dec_func(thd, a) {}
Item_func_atan(THD *thd, Item *a, Item *b): Item_dec_func(thd, a, b) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("atan") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_atan>(thd, this); }
};
class Item_func_cos :public Item_dec_func
{
public:
Item_func_cos(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("cos") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_cos>(thd, this); }
};
class Item_func_sin :public Item_dec_func
{
public:
Item_func_sin(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("sin") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_sin>(thd, this); }
};
class Item_func_tan :public Item_dec_func
{
public:
Item_func_tan(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("tan") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_tan>(thd, this); }
};
class Item_func_cot :public Item_dec_func
{
public:
Item_func_cot(THD *thd, Item *a): Item_dec_func(thd, a) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("cot") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_cot>(thd, this); }
};
class Item_func_int_val :public Item_func_hybrid_field_type
{
public:
Item_func_int_val(THD *thd, Item *a): Item_func_hybrid_field_type(thd, a) {}
bool check_partition_func_processor(void *int_arg) override { return FALSE; }
bool check_vcol_func_processor(void *arg) override { return FALSE; }
virtual decimal_round_mode round_mode() const= 0;
void fix_length_and_dec_double();
void fix_length_and_dec_int_or_decimal();
void fix_length_and_dec_time()
{
fix_attributes_time(0);
set_handler(&type_handler_time2);
}
void fix_length_and_dec_datetime()
{
fix_attributes_datetime(0);
set_handler(&type_handler_datetime2);
// Thinks like CEILING(TIMESTAMP'0000-01-01 23:59:59.9') returns NULL
set_maybe_null();
}
bool fix_length_and_dec(THD *thd) override;
String *str_op(String *str) override { DBUG_ASSERT(0); return 0; }
bool native_op(THD *thd, Native *to) override;
};
class Item_func_ceiling :public Item_func_int_val
{
public:
Item_func_ceiling(THD *thd, Item *a): Item_func_int_val(thd, a) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("ceiling") };
return name;
}
decimal_round_mode round_mode() const override { return CEILING; }
longlong int_op() override;
double real_op() 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;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ceiling>(thd, this); }
};
class Item_func_floor :public Item_func_int_val
{
public:
Item_func_floor(THD *thd, Item *a): Item_func_int_val(thd, a) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("floor") };
return name;
}
decimal_round_mode round_mode() const override { return FLOOR; }
longlong int_op() override;
double real_op() 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;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_floor>(thd, this); }
};
/* This handles round and truncate */
class Item_func_round :public Item_func_hybrid_field_type
{
bool truncate;
void fix_length_and_dec_decimal(uint decimals_to_set);
void fix_length_and_dec_double(uint decimals_to_set);
bool test_if_length_can_increase();
public:
Item_func_round(THD *thd, Item *a, Item *b, bool trunc_arg)
:Item_func_hybrid_field_type(thd, a, b), truncate(trunc_arg) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING truncate_name= {STRING_WITH_LEN("truncate") };
static LEX_CSTRING round_name= {STRING_WITH_LEN("round") };
return truncate ? truncate_name : round_name;
}
double real_op() override;
longlong int_op() 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;
String *str_op(String *str) override
{
DBUG_ASSERT(0);
return NULL;
}
void fix_arg_decimal();
void fix_arg_int(const Type_handler *preferred,
const Type_std_attributes *preferred_attributes,
bool use_decimal_on_length_increase);
void fix_arg_slong_ge0();
void fix_arg_hex_hybrid();
void fix_arg_double();
void fix_arg_time();
void fix_arg_datetime();
void fix_arg_temporal(const Type_handler *h, uint int_part_length);
bool fix_length_and_dec(THD *thd) override
{
/*
We don't want to translate ENUM/SET to CHAR here.
So let's real_type_handler(), not type_handler().
*/
return args[0]->real_type_handler()->Item_func_round_fix_length_and_dec(this);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_round>(thd, this); }
};
class Item_func_rand :public Item_real_func
{
struct my_rnd_struct *rand;
bool first_eval; // TRUE if val_real() is called 1st time
bool check_arguments() const override
{ return check_argument_types_can_return_int(0, arg_count); }
void seed_random (Item * val);
public:
Item_func_rand(THD *thd, Item *a):
Item_real_func(thd, a), rand(0), first_eval(TRUE) {}
Item_func_rand(THD *thd): Item_real_func(thd) {}
double val_real() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("rand") };
return name;
}
bool const_item() const override { return 0; }
void update_used_tables() override;
bool fix_fields(THD *thd, Item **ref) override;
void cleanup() override { first_eval= TRUE; Item_real_func::cleanup(); }
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_SESSION_FUNC);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_rand>(thd, this); }
};
class Item_func_rownum final :public Item_longlong_func
{
/*
This points to a variable that contains the number of rows
accpted so far in the result set
*/
ha_rows *accepted_rows;
SELECT_LEX *select;
public:
Item_func_rownum(THD *thd);
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("rownum") };
return name;
}
enum Functype functype() const override { return ROWNUM_FUNC; }
void update_used_tables() override {}
bool const_item() const override { return 0; }
void fix_after_optimize(THD *thd) override;
bool fix_length_and_dec(THD *thd) override
{
unsigned_flag= 1;
used_tables_cache= RAND_TABLE_BIT;
const_item_cache=0;
set_maybe_null();
return FALSE;
}
void cleanup() override
{
Item_longlong_func::cleanup();
/* Ensure we don't point to freed memory */
accepted_rows= 0;
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg,
VCOL_IMPOSSIBLE);
}
bool check_handler_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg,
VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override { return 0; }
/* This function is used in insert, update and delete */
void store_pointer_to_row_counter(ha_rows *row_counter)
{
accepted_rows= row_counter;
}
};
void fix_rownum_pointers(THD *thd, SELECT_LEX *select_lex, ha_rows *ptr);
class Item_func_sign :public Item_long_func
{
bool check_arguments() const override
{ return args[0]->check_type_can_return_real(func_name_cstring()); }
public:
Item_func_sign(THD *thd, Item *a): Item_long_func(thd, a) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("sign") };
return name;
}
decimal_digits_t decimal_precision() const override { return 1; }
bool fix_length_and_dec(THD *thd) override { fix_char_length(2); return FALSE; }
longlong val_int() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_sign>(thd, this); }
};
class Item_func_units :public Item_real_func
{
LEX_CSTRING name;
double mul,add;
bool check_arguments() const override
{ return check_argument_types_can_return_real(0, arg_count); }
public:
Item_func_units(THD *thd, char *name_arg, Item *a, double mul_arg,
double add_arg):
Item_real_func(thd, a), mul(mul_arg), add(add_arg)
{
name.str= name_arg;
name.length= strlen(name_arg);
}
double val_real() override;
LEX_CSTRING func_name_cstring() const override { return name; }
bool fix_length_and_dec(THD *thd) override
{
decimals= NOT_FIXED_DEC;
max_length= float_length(decimals);
return FALSE;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_units>(thd, this); }
};
/**
Item_func_min_max does not derive from Item_func_hybrid_field_type
because the way how its methods val_xxx() and get_date() work depend
not only by its arguments, but also on the context in which
LEAST() and GREATEST() appear.
For example, using Item_func_min_max in a CAST like this:
CAST(LEAST('11','2') AS SIGNED)
forces Item_func_min_max to compare the arguments as numbers rather
than strings.
Perhaps this should be changed eventually (see MDEV-5893).
*/
class Item_func_min_max :public Item_hybrid_func
{
String tmp_value;
int cmp_sign;
protected:
bool check_arguments() const override
{
return false; // Checked by aggregate_for_min_max()
}
bool fix_attributes(Item **item, uint nitems);
public:
Item_func_min_max(THD *thd, List<Item> &list, int cmp_sign_arg):
Item_hybrid_func(thd, list), cmp_sign(cmp_sign_arg)
{}
String *val_str_native(String *str);
double val_real_native();
longlong val_int_native();
longlong val_uint_native();
my_decimal *val_decimal_native(my_decimal *);
bool get_date_native(THD *thd, MYSQL_TIME *res, date_mode_t fuzzydate);
bool get_time_native(THD *thd, MYSQL_TIME *res);
double val_real() override
{
DBUG_ASSERT(fixed());
return Item_func_min_max::type_handler()->
Item_func_min_max_val_real(this);
}
longlong val_int() override
{
DBUG_ASSERT(fixed());
return Item_func_min_max::type_handler()->
Item_func_min_max_val_int(this);
}
String *val_str(String *str) override
{
DBUG_ASSERT(fixed());
return Item_func_min_max::type_handler()->
Item_func_min_max_val_str(this, str);
}
my_decimal *val_decimal(my_decimal *dec) override
{
DBUG_ASSERT(fixed());
return Item_func_min_max::type_handler()->
Item_func_min_max_val_decimal(this, dec);
}
bool get_date(THD *thd, MYSQL_TIME *res, date_mode_t fuzzydate) override
{
DBUG_ASSERT(fixed());
return Item_func_min_max::type_handler()->
Item_func_min_max_get_date(thd, this, res, fuzzydate);
}
bool val_native(THD *thd, Native *to) override;
void aggregate_attributes_real(Item **items, uint nitems)
{
/*
Aggregating attributes for the double data type for LEAST/GREATEST
is almost the same with aggregating for CASE-alike hybrid functions,
(CASE..THEN, COALESCE, IF, etc).
There is one notable difference though, when a numeric argument is mixed
with a string argument:
- CASE-alike functions return a string data type in such cases
COALESCE(10,'x') -> VARCHAR(2) = '10'
- LEAST/GREATEST returns double:
GREATEST(10,'10e4') -> DOUBLE = 100000
As the string argument can represent a number in the scientific notation,
like in the example above, max_length of the result can be longer than
max_length of the arguments. To handle this properly, max_length is
additionally assigned to the result of float_length(decimals).
*/
Item_func::aggregate_attributes_real(items, nitems);
max_length= float_length(decimals);
}
bool fix_length_and_dec(THD *thd) override
{
if (aggregate_for_min_max(func_name_cstring(), args, arg_count))
return true;
fix_attributes(args, arg_count);
return false;
}
};
class Item_func_min :public Item_func_min_max
{
public:
Item_func_min(THD *thd, List<Item> &list): Item_func_min_max(thd, list, 1) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("least") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_min>(thd, this); }
};
class Item_func_max :public Item_func_min_max
{
public:
Item_func_max(THD *thd, List<Item> &list): Item_func_min_max(thd, list, -1) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("greatest") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_max>(thd, this); }
};
/*
Objects of this class are used for ROLLUP queries to wrap up
each constant item referred to in GROUP BY list.
*/
class Item_func_rollup_const :public Item_func
{
public:
Item_func_rollup_const(THD *thd, Item *a): Item_func(thd, a)
{
name= a->name;
}
double val_real() override { return val_real_from_item(args[0]); }
longlong val_int() override { return val_int_from_item(args[0]); }
String *val_str(String *str) override
{ return val_str_from_item(args[0], str); }
bool val_native(THD *thd, Native *to) override
{ return val_native_from_item(thd, args[0], to); }
my_decimal *val_decimal(my_decimal *dec) override
{ return val_decimal_from_item(args[0], dec); }
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{ return get_date_from_item(thd, args[0], ltime, fuzzydate); }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("rollup_const") };
return name;
}
bool const_item() const override { return 0; }
const Type_handler *type_handler() const override
{ return args[0]->type_handler(); }
bool fix_length_and_dec(THD *thd) override
{
Type_std_attributes::set(*args[0]);
return FALSE;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_rollup_const>(thd, this); }
};
class Item_long_func_length: public Item_long_func
{
bool check_arguments() const override
{ return args[0]->check_type_can_return_str(func_name_cstring()); }
public:
Item_long_func_length(THD *thd, Item *a): Item_long_func(thd, a) {}
bool fix_length_and_dec(THD *thd) override { max_length=10; return FALSE; }
};
class Item_func_octet_length :public Item_long_func_length
{
String value;
public:
Item_func_octet_length(THD *thd, Item *a): Item_long_func_length(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("octet_length") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_octet_length>(thd, this); }
};
class Item_func_bit_length :public Item_longlong_func
{
String value;
public:
Item_func_bit_length(THD *thd, Item *a): Item_longlong_func(thd, a) {}
bool fix_length_and_dec(THD *thd) override
{
max_length= 11; // 0x100000000*8 = 34,359,738,368
return FALSE;
}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("bit_length") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_bit_length>(thd, this); }
};
class Item_func_char_length :public Item_long_func_length
{
String value;
public:
Item_func_char_length(THD *thd, Item *a): Item_long_func_length(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("char_length") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_char_length>(thd, this); }
};
class Item_func_coercibility :public Item_long_func
{
longlong m_cached_collation_derivation;
bool check_arguments() const override
{ return args[0]->check_type_can_return_str(func_name_cstring()); }
public:
Item_func_coercibility(THD *thd, Item *a): Item_long_func(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("coercibility") };
return name;
}
bool fix_length_and_dec(THD *thd) override;
bool eval_not_null_tables(void *) override
{
not_null_tables_cache= 0;
return false;
}
bool find_not_null_fields(table_map allowed) override
{
return false;
}
Item* propagate_equal_fields(THD *thd, const Context &ctx, COND_EQUAL *cond)
override
{ return this; }
bool const_item() const override { return true; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_coercibility>(thd, this); }
table_map used_tables() const override { return 0; }
};
/*
In the corner case LOCATE could return (4,294,967,296 + 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_locate :public Item_long_func
{
bool check_arguments() const override
{
return check_argument_types_can_return_str(0, 2) ||
(arg_count > 2 && args[2]->check_type_can_return_int(func_name_cstring()));
}
String value1,value2;
DTCollation cmp_collation;
public:
Item_func_locate(THD *thd, Item *a, Item *b)
:Item_long_func(thd, a, b) {}
Item_func_locate(THD *thd, Item *a, Item *b, Item *c)
:Item_long_func(thd, a, b, c) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("locate") };
return name;
}
longlong val_int() override;
bool fix_length_and_dec(THD *thd) override
{
max_length= MY_INT32_NUM_DECIMAL_DIGITS;
return agg_arg_charsets_for_comparison(cmp_collation, args, 2);
}
void print(String *str, enum_query_type query_type) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_locate>(thd, this); }
};
class Item_func_field :public Item_long_func
{
String value,tmp;
Item_result cmp_type;
DTCollation cmp_collation;
public:
Item_func_field(THD *thd, List<Item> &list): Item_long_func(thd, list) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("field") };
return name;
}
bool fix_length_and_dec(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_field>(thd, this); }
};
class Item_func_ascii :public Item_long_func
{
bool check_arguments() const override
{ return check_argument_types_can_return_str(0, arg_count); }
String value;
public:
Item_func_ascii(THD *thd, Item *a): Item_long_func(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("ascii") };
return name;
}
bool fix_length_and_dec(THD *thd) override { max_length=3; return FALSE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ascii>(thd, this); }
};
class Item_func_ord :public Item_long_func
{
bool check_arguments() const override
{ return args[0]->check_type_can_return_str(func_name_cstring()); }
String value;
public:
Item_func_ord(THD *thd, Item *a): Item_long_func(thd, a) {}
bool fix_length_and_dec(THD *thd) override { fix_char_length(7); return FALSE; }
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("ord") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_ord>(thd, this); }
};
class Item_func_find_in_set :public Item_long_func
{
bool check_arguments() const override
{ return check_argument_types_can_return_str(0, 2); }
String value,value2;
uint enum_value;
ulonglong enum_bit;
DTCollation cmp_collation;
public:
Item_func_find_in_set(THD *thd, Item *a, Item *b):
Item_long_func(thd, a, b), enum_value(0) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("find_in_set") };
return name;
}
bool fix_length_and_dec(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_find_in_set>(thd, this); }
};
/* Base class for all bit functions: '~', '|', '^', '&', '>>', '<<' */
class Item_func_bit_operator: public Item_handled_func
{
bool check_arguments() const override
{ return check_argument_types_can_return_int(0, arg_count); }
protected:
bool fix_length_and_dec_op1_std(const Handler *ha_int, const Handler *ha_dec)
{
set_func_handler(args[0]->cmp_type() == INT_RESULT ? ha_int : ha_dec);
return m_func_handler->fix_length_and_dec(this);
}
bool fix_length_and_dec_op2_std(const Handler *ha_int, const Handler *ha_dec)
{
set_func_handler(args[0]->cmp_type() == INT_RESULT &&
args[1]->cmp_type() == INT_RESULT ? ha_int : ha_dec);
return m_func_handler->fix_length_and_dec(this);
}
public:
Item_func_bit_operator(THD *thd, Item *a)
:Item_handled_func(thd, a) {}
Item_func_bit_operator(THD *thd, Item *a, Item *b)
:Item_handled_func(thd, a, b) {}
void print(String *str, enum_query_type query_type) override
{
print_op(str, query_type);
}
bool need_parentheses_in_default() override { return true; }
};
class Item_func_bit_or :public Item_func_bit_operator
{
public:
Item_func_bit_or(THD *thd, Item *a, Item *b)
:Item_func_bit_operator(thd, a, b) {}
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("|") };
return name;
}
enum precedence precedence() const override { return BITOR_PRECEDENCE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_bit_or>(thd, this); }
};
class Item_func_bit_and :public Item_func_bit_operator
{
public:
Item_func_bit_and(THD *thd, Item *a, Item *b)
:Item_func_bit_operator(thd, a, b) {}
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("&") };
return name;
}
enum precedence precedence() const override { return BITAND_PRECEDENCE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_bit_and>(thd, this); }
};
class Item_func_bit_count :public Item_handled_func
{
bool check_arguments() const override
{ return args[0]->check_type_can_return_int(func_name_cstring()); }
public:
Item_func_bit_count(THD *thd, Item *a): Item_handled_func(thd, a) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("bit_count") };
return name;
}
bool fix_length_and_dec(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_bit_count>(thd, this); }
};
class Item_func_shift_left :public Item_func_bit_operator
{
public:
Item_func_shift_left(THD *thd, Item *a, Item *b)
:Item_func_bit_operator(thd, a, b) {}
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("<<") };
return name;
}
enum precedence precedence() const override { return SHIFT_PRECEDENCE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_shift_left>(thd, this); }
};
class Item_func_shift_right :public Item_func_bit_operator
{
public:
Item_func_shift_right(THD *thd, Item *a, Item *b)
:Item_func_bit_operator(thd, a, b) {}
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN(">>") };
return name;
}
enum precedence precedence() const override { return SHIFT_PRECEDENCE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_shift_right>(thd, this); }
};
class Item_func_bit_neg :public Item_func_bit_operator
{
public:
Item_func_bit_neg(THD *thd, Item *a): Item_func_bit_operator(thd, a) {}
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("~") };
return name;
}
enum precedence precedence() const override { return NEG_PRECEDENCE; }
void print(String *str, enum_query_type query_type) override
{
str->append(func_name_cstring());
args[0]->print_parenthesised(str, query_type, precedence());
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_bit_neg>(thd, this); }
};
class Item_func_last_insert_id :public Item_longlong_func
{
bool check_arguments() const override
{ return check_argument_types_can_return_int(0, arg_count); }
public:
Item_func_last_insert_id(THD *thd): Item_longlong_func(thd) {}
Item_func_last_insert_id(THD *thd, Item *a): Item_longlong_func(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("last_insert_id") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
unsigned_flag= true;
if (arg_count)
max_length= args[0]->max_length;
return FALSE;
}
bool fix_fields(THD *thd, Item **ref) override;
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_last_insert_id>(thd, this); }
};
class Item_func_benchmark :public Item_long_func
{
bool check_arguments() const override
{
return args[0]->check_type_can_return_int(func_name_cstring()) ||
args[1]->check_type_scalar(func_name_cstring());
}
public:
Item_func_benchmark(THD *thd, Item *count_expr, Item *expr):
Item_long_func(thd, count_expr, expr)
{}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("benchmark") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
max_length=1;
base_flags&= ~item_base_t::MAYBE_NULL;
return FALSE;
}
void print(String *str, enum_query_type query_type) override;
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_benchmark>(thd, this); }
};
void item_func_sleep_init(void);
void item_func_sleep_free(void);
class Item_func_sleep :public Item_long_func
{
bool check_arguments() const override
{ return args[0]->check_type_can_return_real(func_name_cstring()); }
public:
Item_func_sleep(THD *thd, Item *a): Item_long_func(thd, a) {}
bool fix_length_and_dec(THD *thd) override { fix_char_length(1); return FALSE; }
bool const_item() const override { return 0; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("sleep") };
return name;
}
table_map used_tables() const override
{
return used_tables_cache | RAND_TABLE_BIT;
}
bool is_expensive() override { return 1; }
longlong val_int() override;
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_sleep>(thd, this); }
};
#ifdef HAVE_DLOPEN
class Item_udf_func :public Item_func
{
/**
Mark "this" as non-deterministic if it uses no tables
and is not a constant at the same time.
*/
void set_non_deterministic_if_needed()
{
if (!const_item_cache && !used_tables_cache)
used_tables_cache= RAND_TABLE_BIT;
}
protected:
udf_handler udf;
bool is_expensive_processor(void *arg) override { return TRUE; }
class VDec_udf: public Dec_ptr_and_buffer
{
public:
VDec_udf(Item_udf_func *func, udf_handler *udf)
{
my_bool tmp_null_value;
m_ptr= udf->val_decimal(&tmp_null_value, &m_buffer);
DBUG_ASSERT(is_null() == (tmp_null_value != 0));
func->null_value= is_null();
}
};
public:
Item_udf_func(THD *thd, udf_func *udf_arg):
Item_func(thd), udf(udf_arg) {}
Item_udf_func(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_func(thd, list), udf(udf_arg) {}
LEX_CSTRING func_name_cstring() const override
{
const char *tmp= udf.name();
return { tmp, strlen(tmp) };
}
enum Functype functype() const override { return UDF_FUNC; }
bool fix_fields(THD *thd, Item **ref) override
{
DBUG_ASSERT(fixed() == 0);
bool res= udf.fix_fields(thd, this, arg_count, args);
set_non_deterministic_if_needed();
base_flags|= item_base_t::FIXED;
return res;
}
void fix_num_length_and_dec();
void update_used_tables() override
{
/*
TODO: Make a member in UDF_INIT and return if a UDF is deterministic or
not.
Currently UDF_INIT has a member (const_item) that is an in/out
parameter to the init() call.
The code in udf_handler::fix_fields also duplicates the arguments
handling code in Item_func::fix_fields().
The lack of information if a UDF is deterministic makes writing
a correct update_used_tables() for UDFs impossible.
One solution to this would be :
- Add a is_deterministic member of UDF_INIT
- (optionally) deprecate the const_item member of UDF_INIT
- Take away the duplicate code from udf_handler::fix_fields() and
make Item_udf_func call Item_func::fix_fields() to process its
arguments as for any other function.
- Store the deterministic flag returned by <udf>_init into the
udf_handler.
- Don't implement Item_udf_func::fix_fields, implement
Item_udf_func::fix_length_and_dec() instead (similar to non-UDF
functions).
- Override Item_func::update_used_tables to call
Item_func::update_used_tables() and add a RAND_TABLE_BIT to the
result of Item_func::update_used_tables() if the UDF is
non-deterministic.
- (optionally) rename RAND_TABLE_BIT to NONDETERMINISTIC_BIT to
better describe its usage.
The above would require a change of the UDF API.
Until that change is done here's how the current code works:
We call Item_func::update_used_tables() only when we know that
the function depends on real non-const tables and is deterministic.
This can be done only because we know that the optimizer will
call update_used_tables() only when there's possibly a new const
table. So update_used_tables() can only make a Item_func more
constant than it is currently.
That's why we don't need to do anything if a function is guaranteed
to return non-constant (it's non-deterministic) or is already a
const.
*/
if ((used_tables_cache & ~PSEUDO_TABLE_BITS) &&
!(used_tables_cache & RAND_TABLE_BIT))
{
Item_func::update_used_tables();
set_non_deterministic_if_needed();
}
}
void cleanup() override;
bool eval_not_null_tables(void *opt_arg) override
{
not_null_tables_cache= 0;
return 0;
}
bool find_not_null_fields(table_map allowed) override
{
return false;
}
bool is_expensive() override { return 1; }
void print(String *str, enum_query_type query_type) override;
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg,
VCOL_NON_DETERMINISTIC);
}
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{
return type_handler()->Item_get_date_with_warn(thd, this, ltime, fuzzydate);
}
bool excl_dep_on_grouping_fields(st_select_lex *sel) override
{ return false; }
};
class Item_func_udf_float :public Item_udf_func
{
public:
Item_func_udf_float(THD *thd, udf_func *udf_arg):
Item_udf_func(thd, udf_arg) {}
Item_func_udf_float(THD *thd, udf_func *udf_arg,
List<Item> &list):
Item_udf_func(thd, udf_arg, list) {}
longlong val_int() override
{
DBUG_ASSERT(fixed());
return Converter_double_to_longlong(Item_func_udf_float::val_real(),
unsigned_flag).result();
}
my_decimal *val_decimal(my_decimal *dec_buf) override
{
double res=val_real();
if (null_value)
return NULL;
double2my_decimal(E_DEC_FATAL_ERROR, res, dec_buf);
return dec_buf;
}
double val_real() override;
String *val_str(String *str) override;
const Type_handler *type_handler() const override
{ return &type_handler_double; }
bool fix_length_and_dec(THD *thd) override { fix_num_length_and_dec(); return FALSE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_udf_float>(thd, this); }
};
class Item_func_udf_int :public Item_udf_func
{
public:
Item_func_udf_int(THD *thd, udf_func *udf_arg):
Item_udf_func(thd, udf_arg) {}
Item_func_udf_int(THD *thd, udf_func *udf_arg,
List<Item> &list):
Item_udf_func(thd, udf_arg, list) {}
longlong val_int() override;
double val_real() override { return (double) Item_func_udf_int::val_int(); }
my_decimal *val_decimal(my_decimal *decimal_value) override
{
return val_decimal_from_int(decimal_value);
}
String *val_str(String *str) override;
const Type_handler *type_handler() const override
{
if (unsigned_flag)
return &type_handler_ulonglong;
return &type_handler_slonglong;
}
bool fix_length_and_dec(THD *thd) override { decimals= 0; max_length= 21; return FALSE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_udf_int>(thd, this); }
};
class Item_func_udf_decimal :public Item_udf_func
{
public:
Item_func_udf_decimal(THD *thd, udf_func *udf_arg):
Item_udf_func(thd, udf_arg) {}
Item_func_udf_decimal(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_udf_func(thd, udf_arg, list) {}
longlong val_int() override
{
return VDec_udf(this, &udf).to_longlong(unsigned_flag);
}
double val_real() override
{
return VDec_udf(this, &udf).to_double();
}
my_decimal *val_decimal(my_decimal *) override;
String *val_str(String *str) override
{
return VDec_udf(this, &udf).to_string_round(str, decimals);
}
const Type_handler *type_handler() const override
{ return &type_handler_newdecimal; }
bool fix_length_and_dec(THD *thd) override { fix_num_length_and_dec(); return FALSE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_udf_decimal>(thd, this); }
};
class Item_func_udf_str :public Item_udf_func
{
public:
Item_func_udf_str(THD *thd, udf_func *udf_arg):
Item_udf_func(thd, udf_arg) {}
Item_func_udf_str(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_udf_func(thd, udf_arg, list) {}
String *val_str(String *) override;
double val_real() override
{
int err_not_used;
char *end_not_used;
String *res;
res= val_str(&str_value);
return res ? res->charset()->strntod((char*) res->ptr(), res->length(),
&end_not_used, &err_not_used) : 0.0;
}
longlong val_int() override
{
int err_not_used;
String *res; res=val_str(&str_value);
return res ? res->charset()->strntoll(res->ptr(),res->length(),10,
(char**) 0, &err_not_used) : (longlong) 0;
}
my_decimal *val_decimal(my_decimal *dec_buf) override
{
String *res=val_str(&str_value);
if (!res)
return NULL;
string2my_decimal(E_DEC_FATAL_ERROR, res, dec_buf);
return dec_buf;
}
const Type_handler *type_handler() const override
{ return string_type_handler(); }
bool fix_length_and_dec(THD *thd) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_udf_str>(thd, this); }
};
#else /* Dummy functions to get yy_*.cc files compiled */
class Item_func_udf_float :public Item_real_func
{
public:
Item_func_udf_float(THD *thd, udf_func *udf_arg):
Item_real_func(thd) {}
Item_func_udf_float(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_real_func(thd, list) {}
double val_real() { DBUG_ASSERT(fixed()); return 0.0; }
};
class Item_func_udf_int :public Item_int_func
{
public:
Item_func_udf_int(THD *thd, udf_func *udf_arg):
Item_int_func(thd) {}
Item_func_udf_int(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_int_func(thd, list) {}
const Type_handler *type_handler() const override
{ return &type_handler_slonglong; }
longlong val_int() { DBUG_ASSERT(fixed()); return 0; }
};
class Item_func_udf_decimal :public Item_int_func
{
public:
Item_func_udf_decimal(THD *thd, udf_func *udf_arg):
Item_int_func(thd) {}
Item_func_udf_decimal(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_int_func(thd, list) {}
const Type_handler *type_handler() const override
{ return &type_handler_slonglong; }
my_decimal *val_decimal(my_decimal *) { DBUG_ASSERT(fixed()); return 0; }
};
class Item_func_udf_str :public Item_func
{
public:
Item_func_udf_str(THD *thd, udf_func *udf_arg):
Item_func(thd) {}
Item_func_udf_str(THD *thd, udf_func *udf_arg, List<Item> &list):
Item_func(thd, list) {}
String *val_str(String *)
{ DBUG_ASSERT(fixed()); null_value=1; return 0; }
double val_real() { DBUG_ASSERT(fixed()); null_value= 1; return 0.0; }
longlong val_int() { DBUG_ASSERT(fixed()); null_value=1; return 0; }
bool fix_length_and_dec(THD *thd) override
{ base_flags|= item_base_t::MAYBE_NULL; max_length=0; return FALSE; }
};
#endif /* HAVE_DLOPEN */
void mysql_ull_cleanup(THD *thd);
void mysql_ull_set_explicit_lock_duration(THD *thd);
class Item_func_lock :public Item_long_func
{
public:
Item_func_lock(THD *thd): Item_long_func(thd) { }
Item_func_lock(THD *thd, Item *a): Item_long_func(thd, a) {}
Item_func_lock(THD *thd, Item *a, Item *b): Item_long_func(thd, a, b) {}
table_map used_tables() const override
{
return used_tables_cache | RAND_TABLE_BIT;
}
bool const_item() const override { return 0; }
bool is_expensive() override { return 1; }
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
};
class Item_func_get_lock final :public Item_func_lock
{
bool check_arguments() const override
{
return args[0]->check_type_general_purpose_string(func_name_cstring()) ||
args[1]->check_type_can_return_real(func_name_cstring());
}
String value;
public:
Item_func_get_lock(THD *thd, Item *a, Item *b) :Item_func_lock(thd, a, b) {}
longlong val_int() override final;
LEX_CSTRING func_name_cstring() const override final
{
static LEX_CSTRING name= {STRING_WITH_LEN("get_lock") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
max_length= 1;
set_maybe_null();
return FALSE;
}
Item *do_get_copy(THD *thd) const override final
{ return get_item_copy<Item_func_get_lock>(thd, this); }
};
class Item_func_release_all_locks final :public Item_func_lock
{
public:
Item_func_release_all_locks(THD *thd): Item_func_lock(thd)
{ unsigned_flag= 1; }
longlong val_int() override final;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("release_all_locks") };
return name;
}
Item *do_get_copy(THD *thd) const override final
{ return get_item_copy<Item_func_release_all_locks>(thd, this); }
};
class Item_func_release_lock final :public Item_func_lock
{
bool check_arguments() const override
{ return args[0]->check_type_general_purpose_string(func_name_cstring()); }
String value;
public:
Item_func_release_lock(THD *thd, Item *a): Item_func_lock(thd, a) {}
longlong val_int() override final;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("release_lock") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
max_length= 1;
set_maybe_null();
return FALSE;
}
Item *do_get_copy(THD *thd) const override final
{ return get_item_copy<Item_func_release_lock>(thd, this); }
};
/* replication functions */
class Item_master_pos_wait :public Item_longlong_func
{
bool check_arguments() const override
{
return
args[0]->check_type_general_purpose_string(func_name_cstring()) ||
args[1]->check_type_can_return_int(func_name_cstring()) ||
(arg_count > 2 && args[2]->check_type_can_return_int(func_name_cstring())) ||
(arg_count > 3 && args[3]->check_type_general_purpose_string(func_name_cstring()));
}
String value;
public:
Item_master_pos_wait(THD *thd, Item *a, Item *b)
:Item_longlong_func(thd, a, b) {}
Item_master_pos_wait(THD *thd, Item *a, Item *b, Item *c):
Item_longlong_func(thd, a, b, c) {}
Item_master_pos_wait(THD *thd, Item *a, Item *b, Item *c, Item *d):
Item_longlong_func(thd, a, b, c, d) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("master_pos_wait") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
max_length=21;
set_maybe_null();
return FALSE;
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_master_pos_wait>(thd, this); }
};
class Item_master_gtid_wait :public Item_long_func
{
bool check_arguments() const override
{
return args[0]->check_type_general_purpose_string(func_name_cstring()) ||
(arg_count > 1 && args[1]->check_type_can_return_real(func_name_cstring()));
}
String value;
public:
Item_master_gtid_wait(THD *thd, Item *a)
:Item_long_func(thd, a) {}
Item_master_gtid_wait(THD *thd, Item *a, Item *b)
:Item_long_func(thd, a, b) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("master_gtid_wait") };
return name;
}
bool fix_length_and_dec(THD *thd) override { max_length=2; return FALSE; }
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_master_gtid_wait>(thd, this); }
};
/* Handling of user definable variables */
class user_var_entry;
/**
A class to set and get user variables
*/
class Item_func_user_var :public Item_hybrid_func
{
protected:
user_var_entry *m_var_entry;
public:
LEX_CSTRING name; // keep it public
Item_func_user_var(THD *thd, const LEX_CSTRING *a)
:Item_hybrid_func(thd), m_var_entry(NULL), name(*a) { }
Item_func_user_var(THD *thd, const LEX_CSTRING *a, Item *b)
:Item_hybrid_func(thd, b), m_var_entry(NULL), name(*a) { }
Item_func_user_var(THD *thd, Item_func_user_var *item)
:Item_hybrid_func(thd, item),
m_var_entry(item->m_var_entry), name(item->name) { }
Field *create_tmp_field_ex(MEM_ROOT *root, TABLE *table, Tmp_field_src *src,
const Tmp_field_param *param) override
{
DBUG_ASSERT(fixed());
return create_tmp_field_ex_from_handler(root, table, src, param,
type_handler());
}
Field *create_field_for_create_select(MEM_ROOT *root, TABLE *table) override
{ return create_table_field_from_handler(root, table); }
bool check_vcol_func_processor(void *arg) override;
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{
return type_handler()->Item_get_date_with_warn(thd, this, ltime, fuzzydate);
}
};
class Item_func_set_user_var :public Item_func_user_var
{
/*
The entry_thread_id variable is used:
1) to skip unnecessary updates of the entry field (see above);
2) to reset the entry field that was initialized in the other thread
(for example, an item tree of a trigger that updates user variables
may be shared between several connections, and the entry_thread_id field
prevents updates of one connection user variables from a concurrent
connection calling the same trigger that initially updated some
user variable it the first connection context).
*/
my_thread_id entry_thread_id;
String value;
my_decimal decimal_buff;
bool null_item;
union
{
longlong vint;
double vreal;
String *vstr;
my_decimal *vdec;
} save_result;
public:
Item_func_set_user_var(THD *thd, const LEX_CSTRING *a, Item *b):
Item_func_user_var(thd, a, b),
entry_thread_id(0)
{}
Item_func_set_user_var(THD *thd, Item_func_set_user_var *item)
:Item_func_user_var(thd, item),
entry_thread_id(item->entry_thread_id),
value(item->value), decimal_buff(item->decimal_buff),
null_item(item->null_item), save_result(item->save_result)
{}
enum Functype functype() const override { return SUSERVAR_FUNC; }
double val_real() override;
longlong val_int() override;
String *val_str(String *str) override;
my_decimal *val_decimal(my_decimal *) override;
double val_result() override;
longlong val_int_result() override;
bool val_bool_result() override;
String *str_result(String *str) override;
my_decimal *val_decimal_result(my_decimal *) override;
bool is_null_result() override;
bool update_hash(void *ptr, size_t length, const Type_handler *th,
CHARSET_INFO *cs);
bool send(Protocol *protocol, st_value *buffer) override;
void make_send_field(THD *thd, Send_field *tmp_field) override;
bool check(bool use_result_field);
void save_item_result(Item *item);
bool update();
bool fix_fields(THD *thd, Item **ref) 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 ASSIGN_PRECEDENCE; }
void print_as_stmt(String *str, enum_query_type query_type);
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("set_user_var") };
return name;
}
int save_in_field(Field *field, bool no_conversions,
bool can_use_result_field);
int save_in_field(Field *field, bool no_conversions) override
{
return save_in_field(field, no_conversions, 1);
}
void save_org_in_field(Field *field,
fast_field_copier data __attribute__ ((__unused__)))
override
{ (void) save_in_field(field, 1, 0); }
bool register_field_in_read_map(void *arg) override;
bool register_field_in_bitmap(void *arg) override;
bool set_entry(THD *thd, bool create_if_not_exists);
void cleanup() override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_set_user_var>(thd, this); }
bool excl_dep_on_table(table_map tab_map) override { return false; }
};
class Item_func_get_user_var :public Item_func_user_var,
private Settable_routine_parameter
{
public:
Item_func_get_user_var(THD *thd, const LEX_CSTRING *a):
Item_func_user_var(thd, a) {}
enum Functype functype() const override { return GUSERVAR_FUNC; }
LEX_CSTRING get_name() { return name; }
double val_real() override;
longlong val_int() override;
my_decimal *val_decimal(my_decimal*) override;
String *val_str(String* str) override;
bool fix_length_and_dec(THD *thd) override;
void print(String *str, enum_query_type query_type) override;
/*
We must always return variables as strings to guard against selects of type
select @t1:=1,@t1,@t:="hello",@t from foo where (@t1:= t2.b)
*/
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("get_user_var") };
return name;
}
bool const_item() const override;
table_map used_tables() const override
{ return const_item() ? 0 : RAND_TABLE_BIT; }
bool eq(const Item *item, bool binary_cmp) const override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_get_user_var>(thd, this); }
private:
bool set_value(THD *thd, sp_rcontext *ctx, Item **it) override;
public:
Settable_routine_parameter *get_settable_routine_parameter() override
{
return this;
}
};
/*
This item represents user variable used as out parameter (e.g in LOAD DATA),
and it is supposed to be used only for this purprose. So it is simplified
a lot. Actually you should never obtain its value.
The only two reasons for this thing being an Item is possibility to store it
in List<Item> and desire to place this code somewhere near other functions
working with user variables.
*/
class Item_user_var_as_out_param :public Item_fixed_hybrid,
public Load_data_outvar
{
LEX_CSTRING org_name;
user_var_entry *entry;
public:
Item_user_var_as_out_param(THD *thd, const LEX_CSTRING *a)
:Item_fixed_hybrid(thd)
{
DBUG_ASSERT(a->length < UINT_MAX32);
org_name= *a;
set_name(thd, a->str, a->length, system_charset_info);
}
Load_data_outvar *get_load_data_outvar() override
{
return this;
}
bool load_data_set_null(THD *thd, const Load_data_param *param) override
{
set_null_value(param->charset());
return false;
}
bool load_data_set_no_data(THD *thd, const Load_data_param *param) override
{
set_null_value(param->charset());
return false;
}
bool load_data_set_value(THD *thd, const char *pos, uint length,
const Load_data_param *param) override
{
set_value(pos, length, param->charset());
return false;
}
void load_data_print_for_log_event(THD *thd, String *to) const override;
bool load_data_add_outvar(THD *thd, Load_data_param *param) const override
{
return param->add_outvar_user_var(thd);
}
uint load_data_fixed_length() const override
{
return 0;
}
Field *create_tmp_field_ex(MEM_ROOT *root, TABLE *table, Tmp_field_src *src,
const Tmp_field_param *param) override
{
DBUG_ASSERT(0);
return NULL;
}
/* We should return something different from FIELD_ITEM here */
enum Type type() const override { return CONST_ITEM;}
double val_real() override;
longlong val_int() override;
String *val_str(String *str) override;
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override;
my_decimal *val_decimal(my_decimal *decimal_buffer) override;
/* fix_fields() binds variable name with its entry structure */
bool fix_fields(THD *thd, Item **ref) override;
void set_null_value(CHARSET_INFO* cs);
void set_value(const char *str, uint length, CHARSET_INFO* cs);
const Type_handler *type_handler() const override
{ return &type_handler_double; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_user_var_as_out_param>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
/* A system variable */
#define GET_SYS_VAR_CACHE_LONG 1
#define GET_SYS_VAR_CACHE_DOUBLE 2
#define GET_SYS_VAR_CACHE_STRING 4
class Item_func_get_system_var :public Item_func
{
sys_var *var;
enum_var_type var_type, orig_var_type;
LEX_CSTRING component;
longlong cached_llval;
double cached_dval;
String cached_strval;
bool cached_null_value;
query_id_t used_query_id;
uchar cache_present;
public:
Item_func_get_system_var(THD *thd, sys_var *var_arg,
enum_var_type var_type_arg,
LEX_CSTRING *component_arg, const char *name_arg,
size_t name_len_arg);
enum Functype functype() const override { return GSYSVAR_FUNC; }
void update_null_value() override;
bool fix_length_and_dec(THD *thd) override;
void print(String *str, enum_query_type query_type) override;
bool const_item() const override { return true; }
table_map used_tables() const override { return 0; }
const Type_handler *type_handler() const override;
double val_real() override;
longlong val_int() override;
String* val_str(String*) override;
my_decimal *val_decimal(my_decimal *dec_buf) override
{ return val_decimal_from_real(dec_buf); }
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{
return type_handler()->Item_get_date_with_warn(thd, this, ltime, fuzzydate);
}
/* TODO: fix to support views */
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("get_system_var") };
return name;
}
/**
Indicates whether this system variable is written to the binlog or not.
Variables are written to the binlog as part of "status_vars" in
Query_log_event, as an Intvar_log_event, or a Rand_log_event.
@return true if the variable is written to the binlog, false otherwise.
*/
bool is_written_to_binlog();
bool eq(const Item *item, bool binary_cmp) const override;
void cleanup() override;
bool check_vcol_func_processor(void *arg) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_get_system_var>(thd, this); }
};
/* for fulltext search */
class Item_func_match :public Item_real_func
{
public:
uint key, match_flags;
bool join_key;
DTCollation cmp_collation;
FT_INFO *ft_handler;
TABLE *table;
Item_func_match *master; // for master-slave optimization
Item *concat_ws; // Item_func_concat_ws
String value; // value of concat_ws
String search_value; // key_item()'s value converted to cmp_collation
Item_func_match(THD *thd, List<Item> &a, uint b):
Item_real_func(thd, a), key(0), match_flags(b), join_key(0), ft_handler(0),
table(0), master(0), concat_ws(0) { }
void cleanup() override
{
DBUG_ENTER("Item_func_match::cleanup");
Item_real_func::cleanup();
if (!master && ft_handler)
ft_handler->please->close_search(ft_handler);
ft_handler= 0;
concat_ws= 0;
table= 0; // required by Item_func_match::eq()
DBUG_VOID_RETURN;
}
bool is_expensive_processor(void *arg) override { return TRUE; }
enum Functype functype() const override { return FT_FUNC; }
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("match") };
return name;
}
bool eval_not_null_tables(void *opt_arg) override
{
not_null_tables_cache= 0;
return 0;
}
bool find_not_null_fields(table_map allowed) override
{
return false;
}
bool fix_fields(THD *thd, Item **ref) override;
bool eq(const Item *, bool binary_cmp) const override;
/* The following should be safe, even if we compare doubles */
longlong val_int() override { DBUG_ASSERT(fixed()); return val_real() != 0.0; }
double val_real() override;
void print(String *str, enum_query_type query_type) override;
bool fix_index();
bool init_search(THD *thd, bool no_order);
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function("match ... against()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_match>(thd, this); }
Item *do_build_clone(THD *thd) const override { return nullptr; }
private:
/**
Check whether storage engine for given table,
allows FTS Boolean search on non-indexed columns.
@todo A flag should be added to the extended fulltext API so that
it may be checked whether search on non-indexed columns are
supported. Currently, it is not possible to check for such a
flag since @c this->ft_handler is not yet set when this function is
called. The current hack is to assume that search on non-indexed
columns are supported for engines that does not support the extended
fulltext API (e.g., MyISAM), while it is not supported for other
engines (e.g., InnoDB)
@param table_arg Table for which storage engine to check
@retval true if BOOLEAN search on non-indexed columns is supported
@retval false otherwise
*/
bool allows_search_on_non_indexed_columns(TABLE* table_arg)
{
// Only Boolean search may support non_indexed columns
if (!(match_flags & FT_BOOL))
return false;
DBUG_ASSERT(table_arg && table_arg->file);
// Assume that if extended fulltext API is not supported,
// non-indexed columns are allowed. This will be true for MyISAM.
if ((table_arg->file->ha_table_flags() & HA_CAN_FULLTEXT_EXT) == 0)
return true;
return false;
}
};
class Item_func_bit_xor : public Item_func_bit_operator
{
public:
Item_func_bit_xor(THD *thd, Item *a, Item *b)
:Item_func_bit_operator(thd, a, b) {}
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("^") };
return name;
}
enum precedence precedence() const override { return BITXOR_PRECEDENCE; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_bit_xor>(thd, this); }
};
class Item_func_is_free_lock :public Item_long_func
{
bool check_arguments() const override
{ return args[0]->check_type_general_purpose_string(func_name_cstring()); }
String value;
public:
Item_func_is_free_lock(THD *thd, Item *a): Item_long_func(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("is_free_lock") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
decimals=0;
max_length=1;
set_maybe_null();
return FALSE;
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_is_free_lock>(thd, this); }
};
class Item_func_is_used_lock :public Item_long_func
{
bool check_arguments() const override
{ return args[0]->check_type_general_purpose_string(func_name_cstring()); }
String value;
public:
Item_func_is_used_lock(THD *thd, Item *a): Item_long_func(thd, a) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("is_used_lock") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
decimals=0; max_length=10;
set_maybe_null();
return FALSE;
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_is_used_lock>(thd, this); }
};
struct Lex_cast_type_st: public Lex_length_and_dec_st
{
private:
const Type_handler *m_type_handler;
CHARSET_INFO *m_charset;
public:
void set(const Type_handler *handler,
Lex_length_and_dec_st length_and_dec,
CHARSET_INFO *cs= NULL)
{
m_type_handler= handler;
m_charset= cs;
Lex_length_and_dec_st::operator=(length_and_dec);
}
bool set(const Type_handler *handler,
const Lex_length_and_dec_st & length_and_dec,
Sql_used *used,
const Charset_collation_map_st &map,
const Lex_column_charset_collation_attrs_st &cscl,
CHARSET_INFO *defcs)
{
CHARSET_INFO *tmp= cscl.resolved_to_character_set(used, map, defcs);
if (!tmp)
return true;
set(handler, length_and_dec, tmp);
return false;
}
void set(const Type_handler *handler)
{
m_type_handler= handler;
m_charset= NULL;
Lex_length_and_dec_st::reset();
}
const Type_handler *type_handler() const { return m_type_handler; }
CHARSET_INFO *charset() const { return m_charset; }
Item *create_typecast_item(THD *thd, Item *item) const
{
return m_type_handler->
create_typecast_item(thd, item, Type_cast_attributes(*this, m_charset));
}
Item *create_typecast_item_or_error(THD *thd, Item *item) const;
};
class Item_func_row_count :public Item_longlong_func
{
public:
Item_func_row_count(THD *thd): Item_longlong_func(thd) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("row_count") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
decimals= 0;
base_flags&= ~item_base_t::MAYBE_NULL;
return FALSE;
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_row_count>(thd, this); }
};
/*
*
* Stored FUNCTIONs
*
*/
class Item_func_sp :public Item_func,
public Item_sp
{
private:
const Sp_handler *m_handler;
bool execute();
protected:
bool is_expensive_processor(void *arg) override
{ return is_expensive(); }
bool check_arguments() const override
{
// sp_prepare_func_item() checks that the number of columns is correct
return false;
}
public:
Item_func_sp(THD *thd, Name_resolution_context *context_arg,
sp_name *name, const Sp_handler *sph);
Item_func_sp(THD *thd, Name_resolution_context *context_arg,
sp_name *name, const Sp_handler *sph, List<Item> &list);
virtual ~Item_func_sp() = default;
void update_used_tables() override;
void cleanup() override;
LEX_CSTRING func_name_cstring() const override;
const Type_handler *type_handler() const override;
uint cols() const override
{
return sp_result_field->cols();
}
Item* element_index(uint i) override
{
DBUG_ASSERT(sp_result_field_items.argument_count() || !i);
return sp_result_field_items.argument_count() ?
sp_result_field_items.arguments()[i] :
this;
}
Item** addr(uint i) override
{
DBUG_ASSERT(sp_result_field_items.argument_count() || !i);
return sp_result_field_items.argument_count() ?
&sp_result_field_items.arguments()[i] :
nullptr;
}
bool check_cols(uint c) override
{
if (cmp_type() != ROW_RESULT)
return Item_func::check_cols(c);
/*
We don't support ROWs with a single member yet, e.g. ROW(a INT).
Neither in stored function RETURNS, nor in SP variables.
There must be at least two members.
So raise an error in case of c==1, like Item_splocal does.
See comments in Item_splocal::check_cols() for more details.
*/
if (cols() != c || c == 1)
{
my_error(ER_OPERAND_COLUMNS, MYF(0), c);
return true;
}
return false;
}
void bring_value() override
{
DBUG_ASSERT(fixed());
/*
This comment describes the difference between a single row
subselect and a stored function returning ROW.
In case of a single column subselect:
SELECT 1=(SELECT a FROM t1) FROM seq_1_to_5;
Item_singlerow_subselect pretends to be a scalar,
so its type_handler() returns the type handler of the column "a".
(*) This is according to the SQL scandard, which says:
The declared type of a <scalar subquery> is the declared
type of the column of QE (i.e. its query expression).
In the above SELECT statement Arg_comparator calls a scalar comparison
function e.g. compare_int_signed(), which does not call bring_value().
Item_singlerow_subselect::exec() is called when
Arg_comparator::compare_int_signed(), or another scalar comparison
function, calls a value method like Item_singlerow_subselect::val_int().
In case of a multiple-column subselect:
SELECT (1,1)=(SELECT a,a FROM t1) FROM seq_1_to_5;
Item_singlerow_subselect::type_handler() returns &type_handler_row.
Arg_comparator uses compare_row() to compare its arguments.
compare_row() calls bring_value(), which calls
Item_singlerow_subselect::exec().
Unlike a single row subselect, a stored function returning a ROW does
not pretend to be a scalar when there is only one column in the ROW:
SELECT sp_row_func_with_one_col()=sp_row_var_with_one_col FROM ...;
Item_function_sp::type_handler() still returns &type_handler_row when
the return type is a ROW with one column.
Arg_comparator choses compare_row() as the comparison function.
So the execution comes to here.
This chart summarizes how a comparison of ROW values works.
In particular, how Item_singlerow_subselect::exec() vs
Item_func_sp::execute() are called.
Single row subselect ROW value stored function
-------------------- -------------------------
1. bring_value() Yes Yes
is called when
cols>1
2. exec()/execute() Yes Yes
is called from
bring_value()
when cols>1
3. Pretends Yes No
to be a scalar
when cols==1
4. bring_value() No Yes
is called
when cols==1
5. exec()/execute() N/A No
is called from
bring_value()
when cols==1
6. exec()/execute() Yes Yes
is called from
a value method,
like val_int()
when cols==1
*/
if (result_type() == ROW_RESULT)
{
/*
The condition in the "if" above catches the *intentional* difference
in the chart lines 3,4,5 (between a single row subselect and a stored
function returning ROW). Thus the condition makes #6 work in the same
way. See (*) in the beginning of the comment why the difference is
intentional.
*/
execute();
}
}
Field *create_tmp_field_ex(MEM_ROOT *root, TABLE *table, Tmp_field_src *src,
const Tmp_field_param *param) override;
Field *create_field_for_create_select(MEM_ROOT *root, TABLE *table) override
{
return result_type() != STRING_RESULT ?
sp_result_field :
create_table_field_from_handler(root, table);
}
void make_send_field(THD *thd, Send_field *tmp_field) override;
longlong val_int() override
{
if (execute())
return (longlong) 0;
return sp_result_field->val_int();
}
double val_real() override
{
if (execute())
return 0.0;
return sp_result_field->val_real();
}
my_decimal *val_decimal(my_decimal *dec_buf) override
{
if (execute())
return NULL;
return sp_result_field->val_decimal(dec_buf);
}
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
{
if (execute())
return true;
return sp_result_field->get_date(ltime, fuzzydate);
}
String *val_str(String *str) override
{
String buf;
char buff[20];
buf.set(buff, 20, str->charset());
buf.length(0);
if (execute())
return NULL;
/*
result_field will set buf pointing to internal buffer
of the resul_field. Due to this it will change any time
when SP is executed. In order to prevent occasional
corruption of returned value, we make here a copy.
*/
sp_result_field->val_str(&buf);
str->copy(buf);
return str;
}
bool val_native(THD *thd, Native *to) override
{
if (execute())
return true;
return (null_value= sp_result_field->val_native(to));
}
void update_null_value() override
{
execute();
}
bool change_context_processor(void *cntx) override
{ context= (Name_resolution_context *)cntx; return FALSE; }
enum Functype functype() const override { return FUNC_SP; }
bool fix_fields(THD *thd, Item **ref) override;
bool fix_length_and_dec(THD *thd) override;
bool is_expensive() override;
inline Field *get_sp_result_field()
{
return sp_result_field;
}
const sp_name *get_sp_name() const
{
return m_name;
}
bool check_vcol_func_processor(void *arg) override;
bool limit_index_condition_pushdown_processor(void *opt_arg) override
{
return TRUE;
}
Item *do_get_copy(THD *thd) const override { return 0; }
bool eval_not_null_tables(void *opt_arg) override
{
not_null_tables_cache= 0;
return 0;
}
bool excl_dep_on_grouping_fields(st_select_lex *sel) override
{ return false; }
bool find_not_null_fields(table_map allowed) override
{
return false;
}
};
class Item_func_found_rows :public Item_longlong_func
{
public:
Item_func_found_rows(THD *thd): Item_longlong_func(thd) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("found_rows") };
return name;
}
bool fix_length_and_dec(THD *thd) override
{
decimals= 0;
base_flags&= ~item_base_t::MAYBE_NULL;
return FALSE;
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_found_rows>(thd, this); }
};
class Item_func_oracle_sql_rowcount :public Item_longlong_func
{
public:
Item_func_oracle_sql_rowcount(THD *thd): Item_longlong_func(thd) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("SQL%ROWCOUNT") };
return name;
}
void print(String *str, enum_query_type query_type) override
{
str->append(func_name_cstring());
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_oracle_sql_rowcount>(thd, this); }
};
class Item_func_sqlcode: public Item_long_func
{
public:
Item_func_sqlcode(THD *thd): Item_long_func(thd) { }
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("SQLCODE") };
return name;
}
void print(String *str, enum_query_type query_type) override
{
str->append(func_name_cstring());
}
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE);
}
bool fix_length_and_dec(THD *thd) override
{
base_flags&= ~item_base_t::MAYBE_NULL;
null_value= false;
max_length= 11;
return FALSE;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_sqlcode>(thd, this); }
};
void uuid_short_init();
ulonglong server_uuid_value();
class Item_func_uuid_short :public Item_longlong_func
{
public:
Item_func_uuid_short(THD *thd): Item_longlong_func(thd) {}
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("uuid_short") };
return name;
}
longlong val_int() override;
bool const_item() const override { return false; }
bool fix_length_and_dec(THD *thd) override
{ max_length= 21; unsigned_flag=1; return FALSE; }
table_map used_tables() const override { return RAND_TABLE_BIT; }
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg,
VCOL_NON_DETERMINISTIC);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_uuid_short>(thd, this); }
};
class Item_func_last_value :public Item_func
{
protected:
Item *last_value;
public:
Item_func_last_value(THD *thd, List<Item> &list): Item_func(thd, list) {}
double val_real() override;
longlong val_int() override;
String *val_str(String *) override;
my_decimal *val_decimal(my_decimal *) override;
bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override;
bool val_native(THD *thd, Native *) override;
bool fix_length_and_dec(THD *thd) override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("last_value") };
return name;
}
const Type_handler *type_handler() const override
{ return last_value->type_handler(); }
bool eval_not_null_tables(void *) override
{
not_null_tables_cache= 0;
return 0;
}
bool find_not_null_fields(table_map allowed) override
{
return false;
}
bool const_item() const override { return 0; }
void evaluate_sideeffects();
void update_used_tables() override
{
Item_func::update_used_tables();
copy_flags(last_value, item_base_t::MAYBE_NULL);
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_last_value>(thd, this); }
};
/* Implementation for sequences: NEXT VALUE FOR sequence and NEXTVAL() */
class Item_func_nextval :public Item_longlong_func
{
protected:
TABLE_LIST *table_list;
TABLE *table;
bool print_table_list_identifier(THD *thd, String *to) const;
bool check_access(THD *, privilege_t);
public:
Item_func_nextval(THD *thd, TABLE_LIST *table_list_arg):
Item_longlong_func(thd), table_list(table_list_arg) {}
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("nextval") };
return name;
}
bool fix_fields(THD *thd, Item **ref) override
{
/* Don't check privileges, if it's parse_vcol_defs() */
return (table_list->table && check_sequence_privileges(thd)) ||
Item_longlong_func::fix_fields(thd, ref);
}
bool check_sequence_privileges(void *thd) override
{ return check_access((THD*)thd, INSERT_ACL | SELECT_ACL); }
bool fix_length_and_dec(THD *thd) override
{
if (table_list->table)
unsigned_flag= table_list->table->s->sequence->is_unsigned;
max_length= MAX_BIGINT_WIDTH;
set_maybe_null(); /* In case of errors */
return FALSE;
}
/*
update_table() function must be called during the value function
as in case of DEFAULT the sequence table may not yet be open
while fix_fields() are called
*/
void update_table()
{
if (!(table= table_list->table))
{
/*
If nextval was used in DEFAULT then next_local points to
the table_list used by to open the sequence table
*/
table= table_list->next_local->table;
}
}
bool const_item() const override { return 0; }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_nextval>(thd, this); }
void print(String *str, enum_query_type query_type) override;
bool check_vcol_func_processor(void *arg) override
{
return mark_unsupported_function(func_name(), "()", arg, VCOL_NEXTVAL);
}
};
/* Implementation for sequences: LASTVAL(sequence), PostgreSQL style */
class Item_func_lastval :public Item_func_nextval
{
public:
Item_func_lastval(THD *thd, TABLE_LIST *table_list_arg):
Item_func_nextval(thd, table_list_arg) {}
bool check_sequence_privileges(void *thd) override
{ return check_access((THD*)thd, SELECT_ACL); }
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("lastval") };
return name;
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_lastval>(thd, this); }
};
/* Implementation for sequences: SETVAL(sequence), PostgreSQL style */
class Item_func_setval :public Item_func_nextval
{
Longlong_hybrid nextval;
ulonglong round;
bool is_used;
public:
Item_func_setval(THD *thd, TABLE_LIST *table_list_arg, Longlong_hybrid nextval_arg,
ulonglong round_arg, bool is_used_arg)
: Item_func_nextval(thd, table_list_arg),
nextval(nextval_arg), round(round_arg), is_used(is_used_arg)
{}
bool check_sequence_privileges(void *thd) override
{ return check_access((THD*)thd, INSERT_ACL); }
longlong val_int() override;
LEX_CSTRING func_name_cstring() const override
{
static LEX_CSTRING name= {STRING_WITH_LEN("setval") };
return name;
}
void print(String *str, enum_query_type query_type) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_func_setval>(thd, this); }
};
class Interruptible_wait;
Item *get_system_var(THD *thd, enum_var_type var_type,
const LEX_CSTRING *name, const LEX_CSTRING *component);
extern bool check_reserved_words(const LEX_CSTRING *name);
double my_double_round(double value, longlong dec, bool dec_unsigned,
bool truncate);
extern bool volatile mqh_used;
bool update_hash(user_var_entry *entry, bool set_null, void *ptr, size_t length,
const Type_handler *th, CHARSET_INFO *cs);
#endif /* ITEM_FUNC_INCLUDED */
|