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
|
#ifndef ITEM_FUNC_INCLUDED
#define ITEM_FUNC_INCLUDED
/* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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, version 2.0, 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 St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <sys/types.h>
#include <climits>
#include <cmath> // isfinite
#include <cstddef>
#include <functional>
#include "decimal.h"
#include "field_types.h"
#include "ft_global.h"
#include "lex_string.h"
#include "m_ctype.h"
#include "my_alloc.h"
#include "my_base.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_pointer_arithmetic.h"
#include "my_table_map.h"
#include "my_thread_local.h"
#include "my_time.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/udf_registration_types.h"
#include "mysql_com.h"
#include "mysql_time.h"
#include "mysqld_error.h"
#include "sql/enum_query_type.h"
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/item.h" // Item_result_field
#include "sql/my_decimal.h" // str2my_decimal
#include "sql/parse_location.h" // POS
#include "sql/set_var.h" // enum_var_type
#include "sql/sql_const.h"
#include "sql/sql_udf.h" // udf_handler
#include "sql/table.h"
#include "sql/thr_malloc.h"
#include "sql_string.h"
#include "template_utils.h"
class Json_wrapper;
class PT_item_list;
class Protocol;
class Query_block;
class THD;
class sp_rcontext;
struct MY_BITMAP;
struct Parse_context;
template <class T>
class List;
/* Function items used by mysql */
extern bool reject_geometry_args(uint arg_count, Item **args,
Item_result_field *me);
void unsupported_json_comparison(size_t arg_count, Item **args,
const char *msg);
void report_conversion_error(const CHARSET_INFO *to_cs, const char *from,
size_t from_length, const CHARSET_INFO *from_cs);
bool simplify_string_args(THD *thd, const DTCollation &c, Item **items,
uint nitems);
String *eval_string_arg_noinline(const CHARSET_INFO *to_cs, Item *arg,
String *buffer);
inline String *eval_string_arg(const CHARSET_INFO *to_cs, Item *arg,
String *buffer) {
if (my_charset_same(to_cs, arg->collation.collation))
return arg->val_str(buffer);
return eval_string_arg_noinline(to_cs, arg, buffer);
}
class Item_func : public Item_result_field {
protected:
/**
Array of pointers to arguments. If there are max 2 arguments, this array
is often just m_embedded_arguments; otherwise it's explicitly allocated in
the constructor.
*/
Item **args;
private:
Item *m_embedded_arguments[2];
/// Allocates space for the given number of arguments, if needed. Uses
/// #m_embedded_arguments if it's big enough.
bool alloc_args(MEM_ROOT *mem_root, unsigned num_args) {
if (num_args <= array_elements(m_embedded_arguments)) {
args = m_embedded_arguments;
} else {
args = mem_root->ArrayAlloc<Item *>(num_args);
if (args == nullptr) {
// OOM
arg_count = 0;
return true;
}
}
arg_count = num_args;
return false;
}
public:
uint arg_count; ///< How many arguments in 'args'
virtual uint argument_count() const { return arg_count; }
inline Item **arguments() const {
return (argument_count() > 0) ? args : nullptr;
}
protected:
/*
These decide of types of arguments which are prepared-statement
parameters.
*/
bool param_type_uses_non_param(THD *thd,
enum_field_types def = MYSQL_TYPE_VARCHAR);
bool param_type_is_default(THD *thd, uint start, uint end, uint step,
enum_field_types def);
bool param_type_is_default(THD *thd, uint start, uint end,
enum_field_types def = MYSQL_TYPE_VARCHAR) {
return param_type_is_default(thd, start, end, 1, def);
}
bool param_type_is_rejected(uint start, uint end);
/**
Affects how to determine that NULL argument implies a NULL function return.
Default behaviour in this class is:
- if true, any NULL argument means the function returns NULL.
- if false, no such assumption is made and not_null_tables_cache is thus
set to 0.
null_on_null is true for all Item_func derived classes, except Item_func_sp,
all CASE derived functions and a few other functions.
RETURNS NULL ON NULL INPUT can be implemented for stored functions by
modifying this member in class Item_func_sp.
*/
bool null_on_null{true};
/*
Allowed numbers of columns in result (usually 1, which means scalar value)
0 means get this number from first argument
*/
uint allowed_arg_cols{1};
/// Value used in calculation of result of used_tables()
table_map used_tables_cache{0};
/// Value used in calculation of result of not_null_tables()
table_map not_null_tables_cache{0};
public:
/*
When updating Functype with new spatial functions,
is_spatial_operator() should also be updated.
DD_INTERNAL_FUNC:
Some of the internal functions introduced for the INFORMATION_SCHEMA views
opens data-dictionary tables. DD_INTERNAL_FUNC is used for the such type
of functions.
*/
enum Functype {
UNKNOWN_FUNC,
EQ_FUNC,
EQUAL_FUNC,
NE_FUNC,
LT_FUNC,
LE_FUNC,
GE_FUNC,
GT_FUNC,
FT_FUNC,
MATCH_FUNC,
LIKE_FUNC,
ISNULL_FUNC,
ISNOTNULL_FUNC,
ISTRUTH_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_COVEREDBY_FUNC,
SP_COVERS_FUNC,
SP_OVERLAPS_FUNC,
SP_STARTPOINT,
SP_ENDPOINT,
SP_EXTERIORRING,
SP_POINTN,
SP_GEOMETRYN,
SP_INTERIORRINGN,
NOT_FUNC,
NOT_ALL_FUNC,
NOW_FUNC,
FROM_DAYS_FUNC,
TRIG_COND_FUNC,
SUSERVAR_FUNC,
GUSERVAR_FUNC,
COLLATE_FUNC,
EXTRACT_FUNC,
TYPECAST_FUNC,
FUNC_SP,
UDF_FUNC,
NEG_FUNC,
GSYSVAR_FUNC,
GROUPING_FUNC,
ROLLUP_GROUP_ITEM_FUNC,
TABLE_FUNC,
DD_INTERNAL_FUNC,
PLUS_FUNC,
MINUS_FUNC,
MUL_FUNC,
DIV_FUNC,
CEILING_FUNC,
ROUND_FUNC,
TRUNCATE_FUNC,
SQRT_FUNC,
ABS_FUNC,
POW_FUNC,
SIGN_FUNC,
FLOOR_FUNC,
LOG_FUNC,
LN_FUNC,
LOG10_FUNC,
SIN_FUNC,
TAN_FUNC,
COS_FUNC,
COT_FUNC,
DEGREES_FUNC,
RADIANS_FUNC,
EXP_FUNC,
ASIN_FUNC,
ATAN_FUNC,
ACOS_FUNC,
MOD_FUNC,
IF_FUNC,
NULLIF_FUNC,
CASE_FUNC,
YEAR_FUNC,
YEARWEEK_FUNC,
MAKEDATE_FUNC,
MONTH_FUNC,
MONTHNAME_FUNC,
DAY_FUNC,
DAYNAME_FUNC,
TO_DAYS_FUNC,
TO_SECONDS_FUNC,
DATE_FUNC,
HOUR_FUNC,
MINUTE_FUNC,
SECOND_FUNC,
MICROSECOND_FUNC,
DAYOFYEAR_FUNC,
ADDTIME_FUNC,
QUARTER_FUNC,
WEEK_FUNC,
WEEKDAY_FUNC,
DATEADD_FUNC,
FROM_UNIXTIME_FUNC,
CONVERT_TZ_FUNC,
LAST_DAY_FUNC,
UNIX_TIMESTAMP_FUNC,
TIME_TO_SEC_FUNC,
TIMESTAMPDIFF_FUNC,
DATETIME_LITERAL,
GREATEST_FUNC,
COALESCE_FUNC,
LEAST_FUNC,
JSON_CONTAINS,
JSON_OVERLAPS,
JSON_UNQUOTE_FUNC,
MEMBER_OF_FUNC,
STRCMP_FUNC,
TRUE_FUNC,
FALSE_FUNC
};
enum optimize_type {
OPTIMIZE_NONE,
OPTIMIZE_KEY,
OPTIMIZE_OP,
OPTIMIZE_NULL,
OPTIMIZE_EQUAL
};
enum Type type() const override { return FUNC_ITEM; }
virtual enum Functype functype() const { return UNKNOWN_FUNC; }
Item_func() : args(m_embedded_arguments), arg_count(0) {}
explicit Item_func(const POS &pos)
: Item_result_field(pos), args(m_embedded_arguments), arg_count(0) {}
Item_func(Item *a) : args(m_embedded_arguments), arg_count(1) {
args[0] = a;
set_accum_properties(a);
}
Item_func(const POS &pos, Item *a)
: Item_result_field(pos), args(m_embedded_arguments), arg_count(1) {
args[0] = a;
}
Item_func(Item *a, Item *b) : args(m_embedded_arguments), arg_count(2) {
args[0] = a;
args[1] = b;
m_accum_properties = 0;
add_accum_properties(a);
add_accum_properties(b);
}
Item_func(const POS &pos, Item *a, Item *b)
: Item_result_field(pos), args(m_embedded_arguments), arg_count(2) {
args[0] = a;
args[1] = b;
}
Item_func(Item *a, Item *b, Item *c) {
if (alloc_args(*THR_MALLOC, 3)) return;
args[0] = a;
args[1] = b;
args[2] = c;
m_accum_properties = 0;
add_accum_properties(a);
add_accum_properties(b);
add_accum_properties(c);
}
Item_func(const POS &pos, Item *a, Item *b, Item *c)
: Item_result_field(pos) {
if (alloc_args(*THR_MALLOC, 3)) return;
args[0] = a;
args[1] = b;
args[2] = c;
}
Item_func(Item *a, Item *b, Item *c, Item *d) {
if (alloc_args(*THR_MALLOC, 4)) return;
args[0] = a;
args[1] = b;
args[2] = c;
args[3] = d;
m_accum_properties = 0;
add_accum_properties(a);
add_accum_properties(b);
add_accum_properties(c);
add_accum_properties(d);
}
Item_func(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_result_field(pos) {
if (alloc_args(*THR_MALLOC, 4)) return;
args[0] = a;
args[1] = b;
args[2] = c;
args[3] = d;
}
Item_func(Item *a, Item *b, Item *c, Item *d, Item *e) {
if (alloc_args(*THR_MALLOC, 5)) return;
args[0] = a;
args[1] = b;
args[2] = c;
args[3] = d;
args[4] = e;
m_accum_properties = 0;
add_accum_properties(a);
add_accum_properties(b);
add_accum_properties(c);
add_accum_properties(d);
add_accum_properties(e);
}
Item_func(const POS &pos, Item *a, Item *b, Item *c, Item *d, Item *e)
: Item_result_field(pos) {
if (alloc_args(*THR_MALLOC, 5)) return;
args[0] = a;
args[1] = b;
args[2] = c;
args[3] = d;
args[4] = e;
}
Item_func(Item *a, Item *b, Item *c, Item *d, Item *e, Item *f) {
if (alloc_args(*THR_MALLOC, 6)) return;
args[0] = a;
args[1] = b;
args[2] = c;
args[3] = d;
args[4] = e;
args[5] = f;
m_accum_properties = 0;
add_accum_properties(a);
add_accum_properties(b);
add_accum_properties(c);
add_accum_properties(d);
add_accum_properties(e);
add_accum_properties(f);
}
Item_func(const POS &pos, Item *a, Item *b, Item *c, Item *d, Item *e,
Item *f)
: Item_result_field(pos) {
if (alloc_args(*THR_MALLOC, 6)) return;
args[0] = a;
args[1] = b;
args[2] = c;
args[3] = d;
args[4] = e;
args[5] = f;
}
explicit Item_func(mem_root_deque<Item *> *list) {
set_arguments(list, false);
}
Item_func(const POS &pos, PT_item_list *opt_list);
// Constructor used for Item_cond_and/or (see Item comment)
Item_func(THD *thd, const Item_func *item);
/// Get the i'th argument of the function that this object represents.
virtual Item *get_arg(uint i) { return args[i]; }
/// Get the i'th argument of the function that this object represents.
virtual const Item *get_arg(uint i) const { return args[i]; }
virtual Item *set_arg(THD *, uint, Item *) {
assert(0);
return nullptr;
}
bool itemize(Parse_context *pc, Item **res) override;
bool fix_fields(THD *, Item **ref) override;
bool fix_func_arg(THD *, Item **arg);
void fix_after_pullout(Query_block *parent_query_block,
Query_block *removed_query_block) override;
/**
Resolve type of function after all arguments have had their data types
resolved. Called from resolve_type() when no dynamic parameters
are used and from propagate_type() otherwise.
*/
virtual bool resolve_type_inner(THD *) {
assert(false);
return false;
}
bool propagate_type(THD *thd, const Type_properties &type) override;
/**
Returns the pseudo tables depended upon in order to evaluate this
function expression. The default implementation returns the empty
set.
*/
virtual table_map get_initial_pseudo_tables() const { return 0; }
table_map used_tables() const override { return used_tables_cache; }
table_map not_null_tables() const override { return not_null_tables_cache; }
void update_used_tables() override;
void set_used_tables(table_map map) { used_tables_cache = map; }
bool eq(const Item *item, bool binary_cmp) const override;
virtual optimize_type select_optimize(const THD *) { return OPTIMIZE_NONE; }
virtual bool have_rev_func() const { return false; }
virtual Item *key_item() const { return args[0]; }
/**
Copy arguments from list to args array
@param list function argument list
@param context_free true: for use in context-independent
constructors (Item_func(POS,...)) i.e. for use
in the parser
@return true on OOM, false otherwise
*/
bool set_arguments(mem_root_deque<Item *> *list, bool context_free);
void split_sum_func(THD *thd, Ref_item_array ref_item_array,
mem_root_deque<Item *> *fields) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
void print_op(const THD *thd, String *str, enum_query_type query_type) const;
void print_args(const THD *thd, String *str, uint from,
enum_query_type query_type) const;
virtual void fix_num_length_and_dec();
virtual bool is_deprecated() const { return false; }
bool get_arg0_date(MYSQL_TIME *ltime, my_time_flags_t fuzzy_date) {
return (null_value = args[0]->get_date(ltime, fuzzy_date));
}
inline bool get_arg0_time(MYSQL_TIME *ltime) {
return (null_value = args[0]->get_time(ltime));
}
bool is_null() override { return update_null_value() || null_value; }
void signal_divide_by_null();
void signal_invalid_argument_for_log();
friend class udf_handler;
Field *tmp_table_field(TABLE *t_arg) override;
Item *get_tmp_table_item(THD *thd) override;
my_decimal *val_decimal(my_decimal *) override;
bool agg_arg_charsets(DTCollation &c, Item **items, uint nitems, uint flags,
int item_sep) {
return agg_item_charsets(c, func_name(), items, nitems, flags, item_sep,
false);
}
/*
Aggregate arguments for string result, e.g: CONCAT(a,b)
- convert to @@character_set_connection if all arguments are numbers
- allow DERIVATION_NONE
*/
bool agg_arg_charsets_for_string_result(DTCollation &c, Item **items,
uint nitems, int item_sep = 1) {
return agg_item_charsets_for_string_result(c, func_name(), items, nitems,
item_sep);
}
/*
Aggregate arguments for comparison, e.g: a=b, a LIKE b, a RLIKE b
- don't convert to @@character_set_connection if all arguments are numbers
- don't allow DERIVATION_NONE
*/
bool agg_arg_charsets_for_comparison(DTCollation &c, Item **items,
uint nitems, int item_sep = 1) {
return agg_item_charsets_for_comparison(c, func_name(), items, nitems,
item_sep);
}
bool walk(Item_processor processor, enum_walk walk, uchar *arg) override;
Item *transform(Item_transformer transformer, uchar *arg) override;
Item *compile(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;
/**
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) {
if ((unsigned_flag && !val_unsigned && value < 0) ||
(!unsigned_flag && val_unsigned &&
(ulonglong)value > (ulonglong)LLONG_MAX))
return raise_integer_overflow();
return 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() {
assert(fixed);
for (uint i = 0; i < arg_count; i++) {
if (args[i]->type() == Item::FIELD_ITEM &&
args[i]->data_type() == MYSQL_TYPE_TIMESTAMP)
return true;
}
return false;
}
bool has_date_args() {
assert(fixed);
for (uint i = 0; i < arg_count; i++) {
if (args[i]->type() == Item::FIELD_ITEM &&
(args[i]->data_type() == MYSQL_TYPE_DATE ||
args[i]->data_type() == MYSQL_TYPE_DATETIME))
return true;
}
return false;
}
bool has_time_args() {
assert(fixed);
for (uint i = 0; i < arg_count; i++) {
if (args[i]->type() == Item::FIELD_ITEM &&
(args[i]->data_type() == MYSQL_TYPE_TIME ||
args[i]->data_type() == MYSQL_TYPE_DATETIME))
return true;
}
return false;
}
bool has_datetime_args() {
assert(fixed);
for (uint i = 0; i < arg_count; i++) {
if (args[i]->type() == Item::FIELD_ITEM &&
args[i]->data_type() == MYSQL_TYPE_DATETIME)
return true;
}
return false;
}
/*
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(uchar *) override {
return has_timestamp_args();
}
Item *gc_subst_transformer(uchar *arg) override;
bool resolve_type(THD *thd) override {
// By default, pick PS-param's type from other arguments, or VARCHAR
return param_type_uses_non_param(thd);
}
/**
Whether an arg of a JSON function can be cached to avoid repetitive
string->JSON conversion. This function returns true only for those args,
which are the source of JSON data. JSON path args are cached independently
and for them this function returns false. Same as for all other type of
args.
@param arg the arg to cache
@retval true arg can be cached
@retval false otherwise
*/
virtual enum_const_item_cache can_cache_json_arg(Item *arg [[maybe_unused]]) {
return CACHE_NONE;
}
/// Whether this Item is an equi-join condition. If this Item is a compound
/// item (i.e. multiple condition AND'ed together), it will only return true
/// if the Item contains only equi-join conditions AND'ed together. This is
/// used to determine whether the condition can be used as a join condition
/// for hash join (join conditions in hash join must be equi-join conditions),
/// or if it should be placed as a filter after the join.
virtual bool contains_only_equi_join_condition() const { return false; }
protected:
/**
Whether or not an item should contribute to the filtering effect
(@see get_filtering_effect()). First it verifies that table
requirements are satisfied as follows:
1) The item must refer to a field in 'filter_for_table' in some
way. This reference may be indirect through any number of
intermediate items. For example, this item may be an
Item_cond_and which refers to an Item_func_eq which refers to
the field.
2) The item must not refer to other tables than those already
read and the table in 'filter_for_table'
Then it contines to other properties as follows:
Item_funcs represent "<operand1> OP <operand2> [OP ...]". If the
Item_func is to contribute to the filtering effect, then
1) one of the operands must be a field from 'filter_for_table' that is not
in 'fields_to_ignore', and
2) depending on the Item_func type filtering effect is calculated
for, one or all [1] of the other operand(s) must be an available
value, i.e.:
- a constant, or
- a constant subquery, or
- a field value read from a table in 'read_tables', or
- a second field in 'filter_for_table', or
- a function that only refers to constants or tables in
'read_tables', or
- special case: an implicit value like NULL in the case of
"field IS NULL". Such Item_funcs have arg_count==1.
[1] "At least one" for multiple equality (X = Y = Z = ...), "all"
for the rest (e.g. BETWEEN)
@param read_tables Tables earlier in the join sequence.
Predicates for table 'filter_for_table' that
rely on values from these tables can be part of
the filter effect.
@param filter_for_table The table we are calculating filter effect for
@param fields_to_ignore Columns that should be ignored.
@return Item_field that participates in the predicate if none of the
requirements are broken, NULL otherwise
@note: This function only applies to items doing comparison, i.e.
boolean predicates. Unfortunately, some of those items do not
inherit from Item_bool_func so the member function has to be
placed in Item_func.
*/
const Item_field *contributes_to_filter(
table_map read_tables, table_map filter_for_table,
const MY_BITMAP *fields_to_ignore) const;
/**
Named parameters are allowed in a parameter list
The syntax to name parameters in a function call is as follow:
<code>foo(expr AS named, expr named, expr AS "named", expr "named")</code>
where "AS" is optional.
Only UDF function support that syntax.
@return true if the function item can have named parameters
*/
virtual bool may_have_named_parameters() const { return false; }
bool is_non_const_over_literals(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *checker_args) override {
if (is_deprecated()) {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
return false;
}
bool is_valid_for_pushdown(uchar *arg) override;
bool check_column_in_window_functions(uchar *arg) override;
bool check_column_in_group_by(uchar *arg) override;
longlong val_int_from_real();
};
class Item_real_func : public Item_func {
public:
Item_real_func() : Item_func() { set_data_type_double(); }
explicit Item_real_func(const POS &pos) : Item_func(pos) {
set_data_type_double();
}
Item_real_func(Item *a) : Item_func(a) { set_data_type_double(); }
Item_real_func(const POS &pos, Item *a) : Item_func(pos, a) {
set_data_type_double();
}
Item_real_func(Item *a, Item *b) : Item_func(a, b) { set_data_type_double(); }
Item_real_func(const POS &pos, Item *a, Item *b) : Item_func(pos, a, b) {
set_data_type_double();
}
explicit Item_real_func(mem_root_deque<Item *> *list) : Item_func(list) {
set_data_type_double();
}
Item_real_func(const POS &pos, PT_item_list *list) : Item_func(pos, list) {
set_data_type_double();
}
String *val_str(String *str) override;
my_decimal *val_decimal(my_decimal *decimal_value) override;
longlong val_int() override {
assert(fixed);
return llrint_with_overflow_check(val_real());
}
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_real(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
return get_time_from_real(ltime);
}
enum Item_result result_type() const override { return REAL_RESULT; }
};
class Item_func_numhybrid : public Item_func {
protected:
Item_result hybrid_type;
public:
Item_func_numhybrid(Item *a) : Item_func(a), hybrid_type(REAL_RESULT) {
collation.set_numeric();
}
Item_func_numhybrid(const POS &pos, Item *a)
: Item_func(pos, a), hybrid_type(REAL_RESULT) {
collation.set_numeric();
}
Item_func_numhybrid(Item *a, Item *b)
: Item_func(a, b), hybrid_type(REAL_RESULT) {
collation.set_numeric();
}
Item_func_numhybrid(const POS &pos, Item *a, Item *b)
: Item_func(pos, a, b), hybrid_type(REAL_RESULT) {
collation.set_numeric();
}
explicit Item_func_numhybrid(mem_root_deque<Item *> *list)
: Item_func(list), hybrid_type(REAL_RESULT) {
collation.set_numeric();
}
Item_func_numhybrid(const POS &pos, PT_item_list *list)
: Item_func(pos, list), hybrid_type(REAL_RESULT) {
collation.set_numeric();
}
enum Item_result result_type() const override { return hybrid_type; }
enum_field_types default_data_type() const override {
return MYSQL_TYPE_DOUBLE;
}
bool resolve_type(THD *thd) override;
bool resolve_type_inner(THD *thd) override;
void fix_num_length_and_dec() override;
virtual void set_numeric_type() = 0; // To be called from resolve_type()
double val_real() override;
longlong val_int() override;
my_decimal *val_decimal(my_decimal *) override;
String *val_str(String *str) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override;
bool get_time(MYSQL_TIME *ltime) override;
/**
@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;
/**
@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;
/**
@brief Performs the operation that this functions implements when the
result type is DECIMAL.
@param decimal_value 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 *decimal_value) = 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 the
result type is MYSQL_TYPE_DATE or MYSQL_TYPE_DATETIME.
@return The result of the operation.
*/
virtual bool date_op(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) = 0;
virtual bool time_op(MYSQL_TIME *ltime) = 0;
bool is_null() override { return update_null_value() || null_value; }
};
/* function where type of result detected by first argument */
class Item_func_num1 : public Item_func_numhybrid {
public:
Item_func_num1(Item *a) : Item_func_numhybrid(a) {}
Item_func_num1(const POS &pos, Item *a) : Item_func_numhybrid(pos, a) {}
Item_func_num1(Item *a, Item *b) : Item_func_numhybrid(a, b) {}
Item_func_num1(const POS &pos, Item *a, Item *b)
: Item_func_numhybrid(pos, a, b) {}
void fix_num_length_and_dec() override;
void set_numeric_type() override;
String *str_op(String *) override {
assert(0);
return nullptr;
}
bool date_op(MYSQL_TIME *, my_time_flags_t) override {
assert(0);
return false;
}
bool time_op(MYSQL_TIME *) override {
assert(0);
return false;
}
};
/* Base class for operations like '+', '-', '*' */
class Item_num_op : public Item_func_numhybrid {
public:
Item_num_op(Item *a, Item *b) : Item_func_numhybrid(a, b) {}
Item_num_op(const POS &pos, Item *a, Item *b)
: Item_func_numhybrid(pos, a, b) {}
virtual void result_precision() = 0;
void print(const THD *thd, String *str,
enum_query_type query_type) const override {
print_op(thd, str, query_type);
}
void set_numeric_type() override;
String *str_op(String *) override {
assert(0);
return nullptr;
}
bool date_op(MYSQL_TIME *, my_time_flags_t) override {
assert(0);
return false;
}
bool time_op(MYSQL_TIME *) override {
assert(0);
return false;
}
};
class Item_int_func : public Item_func {
public:
Item_int_func() : Item_func() { set_data_type_longlong(); }
explicit Item_int_func(const POS &pos) : Item_func(pos) {
set_data_type_longlong();
}
Item_int_func(Item *a) : Item_func(a) { set_data_type_longlong(); }
Item_int_func(const POS &pos, Item *a) : Item_func(pos, a) {
set_data_type_longlong();
}
Item_int_func(Item *a, Item *b) : Item_func(a, b) {
set_data_type_longlong();
}
Item_int_func(const POS &pos, Item *a, Item *b) : Item_func(pos, a, b) {
set_data_type_longlong();
}
Item_int_func(Item *a, Item *b, Item *c) : Item_func(a, b, c) {
set_data_type_longlong();
}
Item_int_func(const POS &pos, Item *a, Item *b, Item *c)
: Item_func(pos, a, b, c) {
set_data_type_longlong();
}
Item_int_func(Item *a, Item *b, Item *c, Item *d) : Item_func(a, b, c, d) {
set_data_type_longlong();
}
Item_int_func(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_func(pos, a, b, c, d) {
set_data_type_longlong();
}
explicit Item_int_func(mem_root_deque<Item *> *list) : Item_func(list) {
set_data_type_longlong();
}
Item_int_func(const POS &pos, PT_item_list *opt_list)
: Item_func(pos, opt_list) {
set_data_type_longlong();
}
Item_int_func(THD *thd, Item_int_func *item) : Item_func(thd, item) {
set_data_type_longlong();
}
double val_real() override;
String *val_str(String *str) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_int(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override { return get_time_from_int(ltime); }
enum Item_result result_type() const override { return INT_RESULT; }
/*
Concerning PS-param types,
resolve_type(THD *) is not overridden here, as experience shows that for
most child classes of this class, VARCHAR is the best default
*/
};
class Item_func_connection_id final : public Item_int_func {
typedef Item_int_func super;
public:
Item_func_connection_id(const POS &pos) : Item_int_func(pos) {}
table_map get_initial_pseudo_tables() const override {
return INNER_TABLE_BIT;
}
bool itemize(Parse_context *pc, Item **res) override;
const char *func_name() const override { return "connection_id"; }
bool resolve_type(THD *thd) override;
bool fix_fields(THD *thd, Item **ref) override;
longlong val_int() override;
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return ((func_arg->source == VGS_GENERATED_COLUMN) ||
(func_arg->source == VGS_CHECK_CONSTRAINT));
}
};
class Item_typecast_signed final : public Item_int_func {
public:
Item_typecast_signed(const POS &pos, Item *a) : Item_int_func(pos, a) {
unsigned_flag = false;
}
const char *func_name() const override { return "cast_as_signed"; }
longlong val_int() override;
bool resolve_type(THD *thd) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
enum Functype functype() const override { return TYPECAST_FUNC; }
};
class Item_typecast_unsigned final : public Item_int_func {
public:
Item_typecast_unsigned(const POS &pos, Item *a) : Item_int_func(pos, a) {
unsigned_flag = true;
}
const char *func_name() const override { return "cast_as_unsigned"; }
longlong val_int() override;
bool resolve_type(THD *thd) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
enum Functype functype() const override { return TYPECAST_FUNC; }
};
class Item_typecast_decimal final : public Item_func {
public:
Item_typecast_decimal(const POS &pos, Item *a, int len, int dec)
: Item_func(pos, a) {
set_data_type_decimal(len, dec);
}
String *val_str(String *str) override;
double val_real() override;
longlong val_int() override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_decimal(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
return get_time_from_decimal(ltime);
}
my_decimal *val_decimal(my_decimal *) override;
enum Item_result result_type() const override { return DECIMAL_RESULT; }
bool resolve_type(THD *thd) override {
if (args[0]->propagate_type(thd, MYSQL_TYPE_NEWDECIMAL, false, true))
return true;
return false;
}
const char *func_name() const override { return "cast_as_decimal"; }
enum Functype functype() const override { return TYPECAST_FUNC; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
/**
Class used to implement CAST to floating-point data types.
*/
class Item_typecast_real final : public Item_func {
public:
Item_typecast_real(const POS &pos, Item *a, bool as_double)
: Item_func(pos, a) {
if (as_double)
set_data_type_double();
else
set_data_type_float();
}
Item_typecast_real(Item *a) : Item_func(a) { set_data_type_double(); }
String *val_str(String *str) override;
double val_real() override;
longlong val_int() override { return val_int_from_real(); }
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override;
bool get_time(MYSQL_TIME *ltime) override;
my_decimal *val_decimal(my_decimal *decimal_value) override;
enum Item_result result_type() const override { return REAL_RESULT; }
bool resolve_type(THD *thd) override {
return args[0]->propagate_type(thd, MYSQL_TYPE_DOUBLE, false, true);
}
const char *func_name() const override { return "cast_as_real"; }
enum Functype functype() const override { return TYPECAST_FUNC; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_additive_op : public Item_num_op {
public:
Item_func_additive_op(Item *a, Item *b) : Item_num_op(a, b) {}
Item_func_additive_op(const POS &pos, Item *a, Item *b)
: Item_num_op(pos, a, b) {}
void result_precision() override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
};
class Item_func_plus final : public Item_func_additive_op {
public:
Item_func_plus(Item *a, Item *b) : Item_func_additive_op(a, b) {}
Item_func_plus(const POS &pos, Item *a, Item *b)
: Item_func_additive_op(pos, a, b) {}
const char *func_name() const override { return "+"; }
// SUPPRESS_UBSAN: signed integer overflow
longlong int_op() override SUPPRESS_UBSAN;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
enum Functype functype() const override { return PLUS_FUNC; }
};
class Item_func_minus final : public Item_func_additive_op {
public:
Item_func_minus(Item *a, Item *b) : Item_func_additive_op(a, b) {}
Item_func_minus(const POS &pos, Item *a, Item *b)
: Item_func_additive_op(pos, a, b) {}
const char *func_name() const override { return "-"; }
// SUPPRESS_UBSAN: signed integer overflow
longlong int_op() override SUPPRESS_UBSAN;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
bool resolve_type(THD *thd) override;
enum Functype functype() const override { return MINUS_FUNC; }
};
class Item_func_mul final : public Item_num_op {
public:
Item_func_mul(Item *a, Item *b) : Item_num_op(a, b) {}
Item_func_mul(const POS &pos, Item *a, Item *b) : Item_num_op(pos, a, b) {}
const char *func_name() const override { return "*"; }
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
void result_precision() override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
enum Functype functype() const override { return MUL_FUNC; }
};
class Item_func_div_base : public Item_num_op {
public:
Item_func_div_base(const POS &pos, Item *a, Item *b)
: Item_num_op(pos, a, b) {}
Item_func_div_base(Item *a, Item *b) : Item_num_op(a, b) {}
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
enum Functype functype() const override { return DIV_FUNC; }
protected:
uint m_prec_increment;
};
class Item_func_div final : public Item_func_div_base {
public:
Item_func_div(const POS &pos, Item *a, Item *b)
: Item_func_div_base(pos, a, b) {}
const char *func_name() const override { return "/"; }
bool resolve_type(THD *thd) override;
void result_precision() override;
};
class Item_func_div_int final : public Item_func_div_base {
public:
Item_func_div_int(Item *a, Item *b) : Item_func_div_base(a, b) {}
Item_func_div_int(const POS &pos, Item *a, Item *b)
: Item_func_div_base(pos, a, b) {}
const char *func_name() const override { return "DIV"; }
enum_field_types default_data_type() const override {
return MYSQL_TYPE_LONGLONG;
}
bool resolve_type(THD *thd) override;
void result_precision() override;
void set_numeric_type() override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
};
class Item_func_mod final : public Item_num_op {
public:
Item_func_mod(Item *a, Item *b) : Item_num_op(a, b) {}
Item_func_mod(const POS &pos, Item *a, Item *b) : Item_num_op(pos, a, b) {}
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
const char *func_name() const override { return "%"; }
void result_precision() override;
bool resolve_type(THD *thd) override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
enum Functype functype() const override { return MOD_FUNC; }
};
class Item_func_neg final : public Item_func_num1 {
public:
Item_func_neg(Item *a) : Item_func_num1(a) {}
Item_func_neg(const POS &pos, Item *a) : Item_func_num1(pos, a) {}
double real_op() override;
longlong int_op() override;
my_decimal *decimal_op(my_decimal *) override;
const char *func_name() const override { return "-"; }
enum Functype functype() const override { return NEG_FUNC; }
bool resolve_type(THD *thd) override;
void fix_num_length_and_dec() override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
};
class Item_func_abs final : public Item_func_num1 {
public:
Item_func_abs(const POS &pos, Item *a) : Item_func_num1(pos, a) {}
double real_op() override;
longlong int_op() override;
my_decimal *decimal_op(my_decimal *) override;
const char *func_name() const override { return "abs"; }
bool resolve_type(THD *) override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
enum Functype functype() const override { return ABS_FUNC; }
};
// A class to handle logarithmic and trigonometric functions
class Item_dec_func : public Item_real_func {
public:
Item_dec_func(Item *a) : Item_real_func(a) {}
Item_dec_func(const POS &pos, Item *a) : Item_real_func(pos, a) {}
Item_dec_func(const POS &pos, Item *a, Item *b) : Item_real_func(pos, a, b) {}
bool resolve_type(THD *thd) override;
};
class Item_func_exp final : public Item_dec_func {
public:
Item_func_exp(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "exp"; }
enum Functype functype() const override { return EXP_FUNC; }
};
class Item_func_ln final : public Item_dec_func {
public:
Item_func_ln(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "ln"; }
enum Functype functype() const override { return LN_FUNC; }
};
class Item_func_log final : public Item_dec_func {
public:
Item_func_log(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
Item_func_log(const POS &pos, Item *a, Item *b) : Item_dec_func(pos, a, b) {}
double val_real() override;
const char *func_name() const override { return "log"; }
enum Functype functype() const override { return LOG_FUNC; }
};
class Item_func_log2 final : public Item_dec_func {
public:
Item_func_log2(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "log2"; }
};
class Item_func_log10 final : public Item_dec_func {
public:
Item_func_log10(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "log10"; }
enum Functype functype() const override { return LOG10_FUNC; }
};
class Item_func_sqrt final : public Item_dec_func {
public:
Item_func_sqrt(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "sqrt"; }
enum Functype functype() const override { return SQRT_FUNC; }
};
class Item_func_pow final : public Item_dec_func {
public:
Item_func_pow(const POS &pos, Item *a, Item *b) : Item_dec_func(pos, a, b) {}
double val_real() override;
const char *func_name() const override { return "pow"; }
enum Functype functype() const override { return POW_FUNC; }
};
class Item_func_acos final : public Item_dec_func {
public:
Item_func_acos(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "acos"; }
enum Functype functype() const override { return ACOS_FUNC; }
};
class Item_func_asin final : public Item_dec_func {
public:
Item_func_asin(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "asin"; }
enum Functype functype() const override { return ASIN_FUNC; }
};
class Item_func_atan final : public Item_dec_func {
public:
Item_func_atan(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
Item_func_atan(const POS &pos, Item *a, Item *b) : Item_dec_func(pos, a, b) {}
double val_real() override;
const char *func_name() const override { return "atan"; }
enum Functype functype() const override { return ATAN_FUNC; }
};
class Item_func_cos final : public Item_dec_func {
public:
Item_func_cos(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "cos"; }
enum Functype functype() const override { return COS_FUNC; }
};
class Item_func_sin final : public Item_dec_func {
public:
Item_func_sin(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "sin"; }
enum Functype functype() const override { return SIN_FUNC; }
};
class Item_func_tan final : public Item_dec_func {
public:
Item_func_tan(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "tan"; }
enum Functype functype() const override { return TAN_FUNC; }
};
class Item_func_cot final : public Item_dec_func {
public:
Item_func_cot(const POS &pos, Item *a) : Item_dec_func(pos, a) {}
double val_real() override;
const char *func_name() const override { return "cot"; }
enum Functype functype() const override { return COT_FUNC; }
};
class Item_func_int_val : public Item_func_num1 {
public:
Item_func_int_val(Item *a) : Item_func_num1(a) {}
Item_func_int_val(const POS &pos, Item *a) : Item_func_num1(pos, a) {}
bool resolve_type_inner(THD *thd) override;
};
class Item_func_ceiling final : public Item_func_int_val {
public:
Item_func_ceiling(Item *a) : Item_func_int_val(a) {}
Item_func_ceiling(const POS &pos, Item *a) : Item_func_int_val(pos, a) {}
const char *func_name() const override { return "ceiling"; }
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
enum Functype functype() const override { return CEILING_FUNC; }
};
class Item_func_floor final : public Item_func_int_val {
public:
Item_func_floor(Item *a) : Item_func_int_val(a) {}
Item_func_floor(const POS &pos, Item *a) : Item_func_int_val(pos, a) {}
const char *func_name() const override { return "floor"; }
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *) override { return false; }
enum Functype functype() const override { return FLOOR_FUNC; }
};
/* This handles round and truncate */
class Item_func_round final : public Item_func_num1 {
bool truncate;
public:
Item_func_round(Item *a, Item *b, bool trunc_arg)
: Item_func_num1(a, b), truncate(trunc_arg) {}
Item_func_round(const POS &pos, Item *a, Item *b, bool trunc_arg)
: Item_func_num1(pos, a, b), truncate(trunc_arg) {}
const char *func_name() const override {
return truncate ? "truncate" : "round";
}
double real_op() override;
longlong int_op() override;
my_decimal *decimal_op(my_decimal *) override;
bool resolve_type(THD *) override;
enum Functype functype() const override {
return truncate ? TRUNCATE_FUNC : ROUND_FUNC;
}
};
class Item_func_rand final : public Item_real_func {
typedef Item_real_func super;
rand_struct *m_rand{nullptr};
bool first_eval{true}; // true if val_real() is called 1st time
public:
Item_func_rand(const POS &pos, Item *a) : Item_real_func(pos, a) {}
explicit Item_func_rand(const POS &pos) : Item_real_func(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
double val_real() override;
const char *func_name() const override { return "rand"; }
/**
This function is non-deterministic and hence depends on the
'RAND' pseudo-table.
@retval RAND_TABLE_BIT
*/
table_map get_initial_pseudo_tables() const override {
return RAND_TABLE_BIT;
}
bool fix_fields(THD *thd, Item **ref) override;
bool resolve_type(THD *thd) override;
void cleanup() override {
first_eval = true;
Item_real_func::cleanup();
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return ((func_arg->source == VGS_GENERATED_COLUMN) ||
(func_arg->source == VGS_CHECK_CONSTRAINT));
}
private:
void seed_random(Item *val);
};
class Item_func_sign final : public Item_int_func {
public:
Item_func_sign(const POS &pos, Item *a) : Item_int_func(pos, a) {}
const char *func_name() const override { return "sign"; }
enum Functype functype() const override { return SIGN_FUNC; }
longlong val_int() override;
bool resolve_type(THD *thd) override;
};
// Common base class for the DEGREES and RADIANS functions.
class Item_func_units : public Item_real_func {
double mul, add;
protected:
Item_func_units(const POS &pos, Item *a, double mul_arg, double add_arg)
: Item_real_func(pos, a), mul(mul_arg), add(add_arg) {}
public:
double val_real() override;
bool resolve_type(THD *thd) override;
};
class Item_func_degrees final : public Item_func_units {
public:
Item_func_degrees(const POS &pos, Item *a)
: Item_func_units(pos, a, 180.0 / M_PI, 0.0) {}
const char *func_name() const override { return "degrees"; }
enum Functype functype() const override { return DEGREES_FUNC; }
};
class Item_func_radians final : public Item_func_units {
public:
Item_func_radians(const POS &pos, Item *a)
: Item_func_units(pos, a, M_PI / 180.0, 0.0) {}
const char *func_name() const override { return "radians"; }
enum Functype functype() const override { return RADIANS_FUNC; }
};
class Item_func_min_max : public Item_func_numhybrid {
public:
Item_func_min_max(const POS &pos, PT_item_list *opt_list, bool is_least_func)
: Item_func_numhybrid(pos, opt_list),
m_is_least_func(is_least_func),
temporal_item(nullptr) {}
longlong val_int() override;
double val_real() override;
my_decimal *val_decimal(my_decimal *) override;
longlong int_op() override;
double real_op() override;
my_decimal *decimal_op(my_decimal *) override;
String *str_op(String *) override;
bool date_op(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override;
bool time_op(MYSQL_TIME *ltime) override;
enum_field_types default_data_type() const override {
return MYSQL_TYPE_VARCHAR;
}
bool resolve_type(THD *thd) override;
bool resolve_type_inner(THD *thd) override;
void set_numeric_type() override {}
enum Item_result result_type() const override { return hybrid_type; }
/**
Make CAST(LEAST_OR_GREATEST(datetime_expr, varchar_expr))
return a number in format YYMMDDhhmmss.
*/
enum Item_result cast_to_int_type() const override {
return compare_as_dates() ? INT_RESULT : result_type();
}
/// Returns true if arguments to this function should be compared as dates.
bool compare_as_dates() const;
/// Returns true if at least one of the arguments was of temporal type.
bool has_temporal_arg() const { return temporal_item; }
private:
/// True if LEAST function, false if GREATEST.
const bool m_is_least_func;
String m_string_buf;
/*
Used for determining whether one of the arguments is of temporal type and
for converting arguments to a common output format if arguments are
compared as dates and result type is character string. For example,
LEAST('95-05-05', date '10-10-10') should return '1995-05-05', not
'95-05-05'.
*/
Item *temporal_item;
/**
Compare arguments as datetime values.
@param value Pointer to which the datetime value of the winning argument
is written.
@return true if error, false otherwise.
*/
bool cmp_datetimes(longlong *value);
/**
Compare arguments as time values.
@param value Pointer to which the time value of the winning argument is
written.
@return true if error, false otherwise.
*/
bool cmp_times(longlong *value);
};
class Item_func_min final : public Item_func_min_max {
public:
Item_func_min(const POS &pos, PT_item_list *opt_list)
: Item_func_min_max(pos, opt_list, true) {}
const char *func_name() const override { return "least"; }
enum Functype functype() const override { return LEAST_FUNC; }
};
class Item_func_max final : public Item_func_min_max {
public:
Item_func_max(const POS &pos, PT_item_list *opt_list)
: Item_func_min_max(pos, opt_list, false) {}
const char *func_name() const override { return "greatest"; }
enum Functype functype() const override { return GREATEST_FUNC; }
};
/**
A wrapper Item that normally returns its parameter, but becomes NULL when
processing rows for rollup. Rollup is implemented by AggregateIterator, and
works by means of hierarchical levels -- 0 is the “grand totals” phase, 1 is
where only one group level is active, and so on. E.g., for a query with GROUP
BY a,b, the rows will look like this:
a b rollup level
1 1 2
1 2 2
1 NULL 1
2 1 2
2 NULL 1
NULL NULL 0
Each rollup group item has a minimum level for when it becomes NULL. In the
example above, a would have minimum level 0 and b would have minimum level 1.
For simplicity, the JOIN carries a list of all rollup group items, and they
are being given the current rollup level when it changes. A rollup level of
INT_MAX essentially always disables rollup, which is useful when there are
leftover group items in places that are not relevant for rollup
(e.g., sometimes resolving can leave rollup wrappers in place for temporary
tables that are created before grouping, which should then effectively be
disabled).
*/
class Item_rollup_group_item final : public Item_func {
public:
Item_rollup_group_item(int min_rollup_level, Item *inner_item)
: Item_func(inner_item), m_min_rollup_level(min_rollup_level) {
item_name = inner_item->item_name;
set_data_type_from_item(inner_item);
// We're going to replace inner_item in the SELECT list, so copy its hidden
// status. (We could have done this in the caller, but it fits naturally in
// with all the other copying done here.)
hidden = inner_item->hidden;
set_nullable(true);
set_rollup_expr();
}
double val_real() override;
longlong val_int() override;
String *val_str(String *str) override;
my_decimal *val_decimal(my_decimal *dec) override;
bool val_json(Json_wrapper *result) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override;
bool get_time(MYSQL_TIME *ltime) override;
const char *func_name() const override { return "rollup_group_item"; }
table_map used_tables() const override {
/*
If underlying item is non-constant, return its used_tables value.
Otherwise, ensure it is non-constant by adding RAND_TABLE_BIT.
*/
return args[0]->const_for_execution()
? (args[0]->used_tables() | RAND_TABLE_BIT)
: args[0]->used_tables();
}
void update_used_tables() override {
Item_func::update_used_tables();
set_rollup_expr();
}
Item_result result_type() const override { return args[0]->result_type(); }
bool resolve_type(THD *) override {
// needn't handle dynamic parameter as its const_item() is false.
set_data_type_from_item(args[0]);
// The item could be a NULL constant.
null_value = args[0]->is_null();
return false;
}
Item *inner_item() { return args[0]; }
const Item *inner_item() const { return args[0]; }
bool rollup_null() const {
return m_current_rollup_level <= m_min_rollup_level;
}
enum Functype functype() const override { return ROLLUP_GROUP_ITEM_FUNC; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
bool eq(const Item *item, bool binary_cmp) const override;
// Used by AggregateIterator.
void set_current_rollup_level(int level) { m_current_rollup_level = level; }
// Used when cloning the item only.
int min_rollup_level() const { return m_min_rollup_level; }
private:
const int m_min_rollup_level;
int m_current_rollup_level = INT_MAX;
};
class Item_func_length : public Item_int_func {
String value;
public:
Item_func_length(const POS &pos, Item *a) : Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "length"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
max_length = 10;
return false;
}
};
class Item_func_bit_length final : public Item_func_length {
public:
Item_func_bit_length(const POS &pos, Item *a) : Item_func_length(pos, a) {}
longlong val_int() override {
assert(fixed);
return Item_func_length::val_int() * 8;
}
const char *func_name() const override { return "bit_length"; }
};
class Item_func_char_length final : public Item_int_func {
String value;
public:
Item_func_char_length(Item *a) : Item_int_func(a) {}
Item_func_char_length(const POS &pos, Item *a) : Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "char_length"; }
bool resolve_type(THD *thd) override {
max_length = 10;
return Item_int_func::resolve_type(thd);
}
};
class Item_func_coercibility final : public Item_int_func {
public:
Item_func_coercibility(const POS &pos, Item *a) : Item_int_func(pos, a) {
null_on_null = false;
}
longlong val_int() override;
const char *func_name() const override { return "coercibility"; }
bool resolve_type(THD *thd) override {
max_length = 10;
set_nullable(false);
return Item_int_func::resolve_type(thd);
}
};
class Item_func_locate : public Item_int_func {
String value1, value2;
public:
Item_func_locate(Item *a, Item *b) : Item_int_func(a, b) {}
Item_func_locate(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
Item_func_locate(const POS &pos, Item *a, Item *b, Item *c)
: Item_int_func(pos, a, b, c) {}
const char *func_name() const override { return "locate"; }
longlong val_int() override;
bool resolve_type(THD *thd) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_instr final : public Item_func_locate {
public:
Item_func_instr(const POS &pos, Item *a, Item *b)
: Item_func_locate(pos, a, b) {}
const char *func_name() const override { return "instr"; }
};
class Item_func_validate_password_strength final : public Item_int_func {
public:
Item_func_validate_password_strength(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override {
return "validate_password_strength";
}
bool resolve_type(THD *thd) override {
max_length = 10;
set_nullable(true);
return Item_int_func::resolve_type(thd);
}
};
class Item_func_field final : public Item_int_func {
String value, tmp;
Item_result cmp_type;
public:
Item_func_field(const POS &pos, PT_item_list *opt_list)
: Item_int_func(pos, opt_list) {}
longlong val_int() override;
const char *func_name() const override { return "field"; }
bool resolve_type(THD *thd) override;
};
class Item_func_ascii final : public Item_int_func {
String value;
public:
Item_func_ascii(const POS &pos, Item *a) : Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "ascii"; }
bool resolve_type(THD *thd) override {
max_length = 3;
return Item_int_func::resolve_type(thd);
}
};
class Item_func_ord final : public Item_int_func {
String value;
public:
Item_func_ord(const POS &pos, Item *a) : Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "ord"; }
};
class Item_func_find_in_set final : public Item_int_func {
String value, value2;
/*
if m_enum_value is non-zero, it indicates the index of the value of
argument 0 in the set in argument 1, given that argument 0 is
a constant value and argument 1 is a field of type SET.
*/
uint m_enum_value{0};
DTCollation cmp_collation;
public:
Item_func_find_in_set(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
longlong val_int() override;
const char *func_name() const override { return "find_in_set"; }
bool resolve_type(THD *) override;
const CHARSET_INFO *compare_collation() const override {
return cmp_collation.collation;
}
};
/* Base class for all bit functions: '~', '|', '^', '&', '>>', '<<' */
class Item_func_bit : public Item_func {
protected:
/// Stores the Item's result type. Can only be INT_RESULT or STRING_RESULT
Item_result hybrid_type;
/// Buffer storing the determined value
String tmp_value;
/**
@returns true if the second argument should be of binary type for the
result to be of binary type.
*/
virtual bool binary_result_requires_binary_second_arg() const = 0;
public:
Item_func_bit(const POS &pos, Item *a, Item *b) : Item_func(pos, a, b) {}
Item_func_bit(const POS &pos, Item *a) : Item_func(pos, a) {}
bool resolve_type(THD *) override;
enum Item_result result_type() const override { return hybrid_type; }
longlong val_int() override;
String *val_str(String *str) override;
double val_real() override;
my_decimal *val_decimal(my_decimal *decimal_value) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override {
print_op(thd, str, query_type);
}
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
if (hybrid_type == INT_RESULT)
return get_date_from_int(ltime, fuzzydate);
else
return get_date_from_string(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
if (hybrid_type == INT_RESULT)
return get_time_from_int(ltime);
else
return get_time_from_string(ltime);
}
private:
/**
@brief Performs the operation on integers to produce a result of type
INT_RESULT.
@return The result of the operation.
*/
virtual longlong int_op() = 0;
/**
@brief Performs the operation on binary strings to produce a result of
type STRING_RESULT.
@return The result of the operation.
*/
virtual String *str_op(String *) = 0;
};
/**
Base class for all the bit functions that work with two binary
arguments: '&', '|', '^'.
*/
class Item_func_bit_two_param : public Item_func_bit {
protected:
bool binary_result_requires_binary_second_arg() const override {
return true;
}
template <class Char_func, class Int_func>
String *eval_str_op(String *, Char_func char_func, Int_func int_func);
template <class Int_func>
longlong eval_int_op(Int_func int_func);
public:
Item_func_bit_two_param(const POS &pos, Item *a, Item *b)
: Item_func_bit(pos, a, b) {}
};
class Item_func_bit_or final : public Item_func_bit_two_param {
public:
Item_func_bit_or(const POS &pos, Item *a, Item *b)
: Item_func_bit_two_param(pos, a, b) {}
const char *func_name() const override { return "|"; }
private:
longlong int_op() override { return eval_int_op(std::bit_or<ulonglong>()); }
String *str_op(String *str) override {
return eval_str_op(str, std::bit_or<char>(), std::bit_or<ulonglong>());
}
};
class Item_func_bit_and final : public Item_func_bit_two_param {
public:
Item_func_bit_and(const POS &pos, Item *a, Item *b)
: Item_func_bit_two_param(pos, a, b) {}
const char *func_name() const override { return "&"; }
private:
longlong int_op() override { return eval_int_op(std::bit_and<ulonglong>()); }
String *str_op(String *str) override {
return eval_str_op(str, std::bit_and<char>(), std::bit_and<ulonglong>());
}
};
class Item_func_bit_xor final : public Item_func_bit_two_param {
public:
Item_func_bit_xor(const POS &pos, Item *a, Item *b)
: Item_func_bit_two_param(pos, a, b) {}
const char *func_name() const override { return "^"; }
private:
longlong int_op() override { return eval_int_op(std::bit_xor<ulonglong>()); }
String *str_op(String *str) override {
return eval_str_op(str, std::bit_xor<char>(), std::bit_xor<ulonglong>());
}
};
class Item_func_bit_count final : public Item_int_func {
public:
Item_func_bit_count(const POS &pos, Item *a) : Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "bit_count"; }
bool resolve_type(THD *thd) override {
// Default: binary string; reprepare if integer
if (args[0]->data_type() == MYSQL_TYPE_INVALID &&
args[0]->propagate_type(
thd, Type_properties(MYSQL_TYPE_VARCHAR, &my_charset_bin)))
return true;
max_length = MAX_BIGINT_WIDTH + 1;
return false;
}
};
class Item_func_shift : public Item_func_bit {
protected:
bool binary_result_requires_binary_second_arg() const override {
return false;
}
template <bool to_left>
longlong eval_int_op();
template <bool to_left>
String *eval_str_op(String *str);
public:
Item_func_shift(const POS &pos, Item *a, Item *b)
: Item_func_bit(pos, a, b) {}
};
class Item_func_shift_left final : public Item_func_shift {
public:
Item_func_shift_left(const POS &pos, Item *a, Item *b)
: Item_func_shift(pos, a, b) {}
const char *func_name() const override { return "<<"; }
private:
longlong int_op() override { return eval_int_op<true>(); }
String *str_op(String *str) override { return eval_str_op<true>(str); }
};
class Item_func_shift_right final : public Item_func_shift {
public:
Item_func_shift_right(const POS &pos, Item *a, Item *b)
: Item_func_shift(pos, a, b) {}
const char *func_name() const override { return ">>"; }
private:
longlong int_op() override { return eval_int_op<false>(); }
String *str_op(String *str) override { return eval_str_op<false>(str); }
};
class Item_func_bit_neg final : public Item_func_bit {
protected:
bool binary_result_requires_binary_second_arg() const override {
return false;
}
public:
Item_func_bit_neg(const POS &pos, Item *a) : Item_func_bit(pos, a) {}
const char *func_name() const override { return "~"; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override {
Item_func::print(thd, str, query_type);
}
private:
longlong int_op() override;
String *str_op(String *str) override;
};
class Item_func_last_insert_id final : public Item_int_func {
typedef Item_int_func super;
public:
Item_func_last_insert_id() : Item_int_func() {}
explicit Item_func_last_insert_id(const POS &pos) : Item_int_func(pos) {}
Item_func_last_insert_id(const POS &pos, Item *a) : Item_int_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "last_insert_id"; }
table_map get_initial_pseudo_tables() const override {
return INNER_TABLE_BIT;
}
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_LONGLONG)) return true;
unsigned_flag = true;
return false;
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_func_benchmark final : public Item_int_func {
typedef Item_int_func super;
public:
Item_func_benchmark(const POS &pos, Item *count_expr, Item *expr)
: Item_int_func(pos, count_expr, expr) {}
/// Ensure that "benchmark()" is never optimized away
table_map get_initial_pseudo_tables() const override {
return RAND_TABLE_BIT;
}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "benchmark"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_LONGLONG)) return true;
if (param_type_is_default(thd, 1, 2)) return true;
max_length = 1;
set_nullable(true);
return false;
}
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
void item_func_sleep_init();
void item_func_sleep_free();
class Item_func_sleep final : public Item_int_func {
typedef Item_int_func super;
public:
Item_func_sleep(const POS &pos, Item *a) : Item_int_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
const char *func_name() const override { return "sleep"; }
/**
This function is non-deterministic and hence depends on the
'RAND' pseudo-table.
@retval RAND_TABLE_BIT
*/
table_map get_initial_pseudo_tables() const override {
return RAND_TABLE_BIT;
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_DOUBLE)) return true;
return Item_int_func::resolve_type(thd);
}
longlong val_int() override;
};
class Item_udf_func : public Item_func {
typedef Item_func super;
protected:
udf_handler udf;
bool is_expensive_processor(uchar *) override { return true; }
public:
Item_udf_func(const POS &pos, udf_func *udf_arg, PT_item_list *opt_list)
: Item_func(pos, opt_list), udf(udf_arg) {
null_on_null = false;
}
~Item_udf_func() override = default;
bool itemize(Parse_context *pc, Item **res) override;
const char *func_name() const override { return udf.name(); }
enum Functype functype() const override { return UDF_FUNC; }
table_map get_initial_pseudo_tables() const override {
return m_non_deterministic ? RAND_TABLE_BIT : 0;
}
bool fix_fields(THD *thd, Item **ref) override;
void cleanup() override;
Item_result result_type() const override { return udf.result_type(); }
bool is_expensive() override { return true; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
protected:
bool may_have_named_parameters() const override { return true; }
private:
/**
This member is set during resolving and is used by update_used_tables() and
fix_after_pullout() to preserve the non-deterministic property.
*/
bool m_non_deterministic{false};
};
class Item_func_udf_float final : public Item_udf_func {
public:
Item_func_udf_float(const POS &pos, udf_func *udf_arg, PT_item_list *opt_list)
: Item_udf_func(pos, udf_arg, opt_list) {}
longlong val_int() override {
assert(fixed == 1);
return (longlong)rint(Item_func_udf_float::val_real());
}
my_decimal *val_decimal(my_decimal *dec_buf) override {
double res = val_real();
if (null_value) return nullptr;
double2my_decimal(E_DEC_FATAL_ERROR, res, dec_buf);
return dec_buf;
}
double val_real() override;
String *val_str(String *str) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_real(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
return get_time_from_real(ltime);
}
bool resolve_type(THD *) override {
set_data_type_double();
fix_num_length_and_dec(); // @todo - needed?
return false;
}
};
class Item_func_udf_int final : public Item_udf_func {
public:
Item_func_udf_int(const POS &pos, udf_func *udf_arg, PT_item_list *opt_list)
: Item_udf_func(pos, udf_arg, opt_list) {}
longlong val_int() override;
double val_real() override {
return static_cast<double>(Item_func_udf_int::val_int());
}
String *val_str(String *str) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_int(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override { return get_time_from_int(ltime); }
enum Item_result result_type() const override { return INT_RESULT; }
bool resolve_type(THD *) override {
set_data_type_longlong();
return false;
}
};
class Item_func_udf_decimal : public Item_udf_func {
public:
Item_func_udf_decimal(const POS &pos, udf_func *udf_arg,
PT_item_list *opt_list)
: Item_udf_func(pos, udf_arg, opt_list) {}
longlong val_int() override;
double val_real() override;
my_decimal *val_decimal(my_decimal *) override;
String *val_str(String *str) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_decimal(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
return get_time_from_decimal(ltime);
}
enum Item_result result_type() const override { return DECIMAL_RESULT; }
bool resolve_type(THD *thd) override;
};
class Item_func_udf_str : public Item_udf_func {
public:
Item_func_udf_str(const POS &pos, udf_func *udf_arg, PT_item_list *opt_list)
: Item_udf_func(pos, udf_arg, opt_list) {}
String *val_str(String *) override;
double val_real() override {
int err_not_used;
const char *end_not_used;
String *res;
res = val_str(&str_value);
return res ? my_strntod(res->charset(), 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 ? my_strntoll(res->charset(), res->ptr(), res->length(), 10,
nullptr, &err_not_used)
: (longlong)0;
}
my_decimal *val_decimal(my_decimal *dec_buf) override {
String *res = val_str(&str_value);
if (!res) return nullptr;
str2my_decimal(E_DEC_FATAL_ERROR, res->ptr(), res->length(), res->charset(),
dec_buf);
return dec_buf;
}
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_string(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
return get_time_from_string(ltime);
}
enum Item_result result_type() const override { return STRING_RESULT; }
bool resolve_type(THD *thd) override;
};
void mysql_ull_cleanup(THD *thd);
void mysql_ull_set_explicit_lock_duration(THD *thd);
class Item_func_get_lock final : public Item_int_func {
typedef Item_int_func super;
String value;
public:
Item_func_get_lock(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "get_lock"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
if (param_type_is_default(thd, 1, 2, MYSQL_TYPE_LONGLONG)) return true;
max_length = 1;
set_nullable(true);
return false;
}
bool is_non_const_over_literals(uchar *) override { return true; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_func_release_lock final : public Item_int_func {
typedef Item_int_func super;
String value;
public:
Item_func_release_lock(const POS &pos, Item *a) : Item_int_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "release_lock"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
max_length = 1;
set_nullable(true);
return false;
}
bool is_non_const_over_literals(uchar *) override { return true; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_func_release_all_locks final : public Item_int_func {
typedef Item_int_func super;
public:
explicit Item_func_release_all_locks(const POS &pos) : Item_int_func(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "release_all_locks"; }
bool resolve_type(THD *) override {
unsigned_flag = true;
return false;
}
bool is_non_const_over_literals(uchar *) override { return true; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
/* replication functions */
class Item_source_pos_wait : public Item_int_func {
typedef Item_int_func super;
String value;
public:
Item_source_pos_wait(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
Item_source_pos_wait(const POS &pos, Item *a, Item *b, Item *c)
: Item_int_func(pos, a, b, c) {}
Item_source_pos_wait(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "source_pos_wait"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
if (param_type_is_default(thd, 1, 3, MYSQL_TYPE_LONGLONG)) return true;
if (param_type_is_default(thd, 3, 4)) return true;
max_length = 21;
set_nullable(true);
return false;
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_master_pos_wait : public Item_source_pos_wait {
public:
Item_master_pos_wait(const POS &pos, Item *a, Item *b)
: Item_source_pos_wait(pos, a, b) {}
Item_master_pos_wait(const POS &pos, Item *a, Item *b, Item *c)
: Item_source_pos_wait(pos, a, b, c) {}
Item_master_pos_wait(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_source_pos_wait(pos, a, b, c, d) {}
longlong val_int() override;
};
/**
Internal functions used by INFORMATION_SCHEMA implementation to check
if user have access to given database/table/column.
*/
class Item_func_can_access_database : public Item_int_func {
public:
Item_func_can_access_database(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_database"; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
class Item_func_can_access_table : public Item_int_func {
public:
Item_func_can_access_table(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_table"; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
class Item_func_can_access_user : public Item_int_func {
public:
Item_func_can_access_user(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_user"; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
class Item_func_can_access_trigger : public Item_int_func {
public:
Item_func_can_access_trigger(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_trigger"; }
bool resolve_type(THD *) override {
max_length = 4;
set_nullable(true);
return false;
}
};
class Item_func_can_access_routine : public Item_int_func {
public:
Item_func_can_access_routine(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_routine"; }
bool resolve_type(THD *) override {
max_length = 4;
set_nullable(true);
return false;
}
};
class Item_func_can_access_event : public Item_int_func {
public:
Item_func_can_access_event(const POS &pos, Item *a) : Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_event"; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
class Item_func_can_access_resource_group : public Item_int_func {
public:
Item_func_can_access_resource_group(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_resource_group"; }
bool resolve_type(THD *) override {
max_length = 1; // Function can return 0 or 1.
set_nullable(true);
return false;
}
};
class Item_func_can_access_view : public Item_int_func {
public:
Item_func_can_access_view(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_view"; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
class Item_func_can_access_column : public Item_int_func {
public:
Item_func_can_access_column(const POS &pos, Item *a, Item *b, Item *c)
: Item_int_func(pos, a, b, c) {}
longlong val_int() override;
const char *func_name() const override { return "can_access_column"; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
class Item_func_is_visible_dd_object : public Item_int_func {
public:
Item_func_is_visible_dd_object(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
Item_func_is_visible_dd_object(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
Item_func_is_visible_dd_object(const POS &pos, Item *a, Item *b, Item *c)
: Item_int_func(pos, a, b, c) {}
longlong val_int() override;
const char *func_name() const override { return "is_visible_dd_object"; }
bool resolve_type(THD *) override {
max_length = 1;
set_nullable(true);
return false;
}
};
class Item_func_internal_table_rows : public Item_int_func {
public:
Item_func_internal_table_rows(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_table_rows"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_avg_row_length : public Item_int_func {
public:
Item_func_internal_avg_row_length(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_avg_row_length"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_data_length : public Item_int_func {
public:
Item_func_internal_data_length(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_data_length"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_max_data_length : public Item_int_func {
public:
Item_func_internal_max_data_length(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_max_data_length"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_index_length : public Item_int_func {
public:
Item_func_internal_index_length(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_index_length"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_data_free : public Item_int_func {
public:
Item_func_internal_data_free(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_data_free"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_auto_increment : public Item_int_func {
public:
Item_func_internal_auto_increment(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_auto_increment"; }
bool resolve_type(THD *) override {
set_nullable(true);
unsigned_flag = true;
null_on_null = false;
return false;
}
};
class Item_func_internal_checksum : public Item_int_func {
public:
Item_func_internal_checksum(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_checksum"; }
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_keys_disabled : public Item_int_func {
public:
Item_func_internal_keys_disabled(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "internal_keys_disabled"; }
bool resolve_type(THD *) override {
set_nullable(false);
null_on_null = false;
return false;
}
};
class Item_func_internal_index_column_cardinality : public Item_int_func {
public:
Item_func_internal_index_column_cardinality(const POS &pos,
PT_item_list *list)
: Item_int_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_index_column_cardinality";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_dd_char_length final : public Item_int_func {
public:
Item_func_internal_dd_char_length(const POS &pos, Item *a, Item *b, Item *c,
Item *d)
: Item_int_func(pos, a, b, c, d) {}
longlong val_int() override;
const char *func_name() const override { return "internal_dd_char_length"; }
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_get_view_warning_or_error final
: public Item_int_func {
public:
Item_func_internal_get_view_warning_or_error(const POS &pos,
PT_item_list *list)
: Item_int_func(pos, list) {}
longlong val_int() override;
const char *func_name() const override {
return "internal_get_view_warning_or_error";
}
bool resolve_type(THD *) override {
max_length = 1;
set_nullable(false);
null_on_null = false;
return false;
}
};
class Item_func_get_dd_index_sub_part_length final : public Item_int_func {
public:
Item_func_get_dd_index_sub_part_length(const POS &pos, PT_item_list *list)
: Item_int_func(pos, list) {}
longlong val_int() override;
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "get_dd_index_sub_part_length";
}
};
class Item_func_internal_tablespace_id : public Item_int_func {
public:
Item_func_internal_tablespace_id(const POS &pos, Item *a, Item *b, Item *c,
Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override { return "internal_tablespace_id"; }
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_logfile_group_number
: public Item_int_func {
public:
Item_func_internal_tablespace_logfile_group_number(const POS &pos, Item *a,
Item *b, Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_logfile_group_number";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_free_extents : public Item_int_func {
public:
Item_func_internal_tablespace_free_extents(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_free_extents";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_total_extents : public Item_int_func {
public:
Item_func_internal_tablespace_total_extents(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_total_extents";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_extent_size : public Item_int_func {
public:
Item_func_internal_tablespace_extent_size(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_extent_size";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_initial_size : public Item_int_func {
public:
Item_func_internal_tablespace_initial_size(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_initial_size";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_maximum_size : public Item_int_func {
public:
Item_func_internal_tablespace_maximum_size(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_maximum_size";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_autoextend_size : public Item_int_func {
public:
Item_func_internal_tablespace_autoextend_size(const POS &pos, Item *a,
Item *b, Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_autoextend_size";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_version : public Item_int_func {
public:
Item_func_internal_tablespace_version(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_version";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
class Item_func_internal_tablespace_data_free : public Item_int_func {
public:
Item_func_internal_tablespace_data_free(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_int_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
longlong val_int() override;
const char *func_name() const override {
return "internal_tablespace_data_free";
}
bool resolve_type(THD *) override {
set_nullable(true);
null_on_null = false;
return false;
}
};
/**
Common class for:
Item_func_get_system_var
Item_func_get_user_var
Item_func_set_user_var
*/
class Item_var_func : public Item_func {
public:
Item_var_func() : Item_func() {}
explicit Item_var_func(const POS &pos) : Item_func(pos) {}
Item_var_func(THD *thd, Item_var_func *item) : Item_func(thd, item) {}
Item_var_func(Item *a) : Item_func(a) {}
Item_var_func(const POS &pos, Item *a) : Item_func(pos, a) {}
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_non_temporal(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *ltime) override {
return get_time_from_non_temporal(ltime);
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->err_code = (func_arg->source == VGS_CHECK_CONSTRAINT)
? ER_CHECK_CONSTRAINT_VARIABLES
: ER_DEFAULT_VAL_GENERATED_VARIABLES;
return true;
}
};
/* Handling of user definable variables */
// this is needed for user_vars hash
class user_var_entry {
void reset_value() {
m_ptr = nullptr;
m_length = 0;
}
void set_value(char *value, size_t length) {
m_ptr = value;
m_length = length;
}
/**
Position inside a user_var_entry where small values are stored:
double values, longlong values and string values with length
up to extra_size (should be 8 bytes on all platforms).
String values with length longer than 8 are stored in a separate
memory buffer, which is allocated when needed using the method realloc().
*/
char *internal_buffer_ptr() {
return pointer_cast<char *>(this) + ALIGN_SIZE(sizeof(user_var_entry));
}
/**
Position inside a user_var_entry where a null-terminates array
of characters representing the variable name is stored.
*/
char *name_ptr() { return internal_buffer_ptr() + extra_size; }
/**
Initialize m_ptr to the internal buffer (if the value is small enough),
or allocate a separate buffer.
@param length - length of the value to be stored.
*/
bool mem_realloc(size_t length);
/**
Check if m_ptr points to an external buffer previously allocated by
realloc().
@retval true - an external buffer is allocated.
@retval false - m_ptr is null, or points to the internal buffer.
*/
bool alloced() { return m_ptr && m_ptr != internal_buffer_ptr(); }
/**
Free the external value buffer, if it's allocated.
*/
void free_value() {
if (alloced()) my_free(m_ptr);
}
/**
Copy the array of characters from the given name into the internal
name buffer and initialize entry_name to point to it.
*/
void copy_name(const Simple_cstring &name) {
name.strcpy(name_ptr());
entry_name = Name_string(name_ptr(), name.length());
}
/**
Initialize all members
@param thd Current session.
@param name Name of the user_var_entry instance.
@param cs charset information of the user_var_entry instance.
*/
void init(THD *thd, const Simple_cstring &name, const CHARSET_INFO *cs);
/**
Store a value of the given type into a user_var_entry instance.
@param from Value
@param length Size of the value
@param type type
@retval false on success
@retval true on memory allocation error
*/
bool store(const void *from, size_t length, Item_result type);
/**
Assert the user variable is locked.
This is debug code only.
The thread LOCK_thd_data mutex protects:
- the thd->user_vars hash itself
- the values in the user variable itself.
The protection is required for monitoring,
as a different thread can inspect this session
user variables, on a live session.
*/
void assert_locked() const;
static const size_t extra_size = sizeof(double);
char *m_ptr; ///< Value
size_t m_length; ///< Value length
Item_result m_type; ///< Value type
THD *m_owner;
/**
Set to the id of the most recent query that has used the variable.
Used in binlogging: When set, there is no need to add a reference to this
variable to the binlog. Imagine it is this:
INSERT INTO t SELECT @a:=10, @a:=@a+1.
Then we have a Item_func_get_user_var (because of the `@a+1`) so we
think we have to write the value of `@a` to the binlog. But before that,
we have a Item_func_set_user_var to create `@a` (`@a:=10`), in this we mark
the variable as "already logged" so that it won't be logged
by Item_func_get_user_var (because that's not necessary).
*/
query_id_t m_used_query_id;
public:
user_var_entry() = default; /* Remove gcc warning */
THD *owner_session() const { return m_owner; }
Simple_cstring entry_name; // Variable name
DTCollation collation; // Collation with attributes
bool unsigned_flag; // true if unsigned, false if signed
/**
Set value to user variable.
@param ptr pointer to buffer with new value
@param length length of new value
@param type type of new value
@param cs charset info for new value
@param dv derivation for new value
@param unsigned_arg indicates if a value of type INT_RESULT is unsigned
@note Sets error and fatal error if allocation fails.
@retval
false success
@retval
true failure
*/
bool store(const void *ptr, size_t length, Item_result type,
const CHARSET_INFO *cs, Derivation dv, bool unsigned_arg);
/**
Set type of to the given value.
@param type Data type.
*/
void set_type(Item_result type) {
assert_locked();
m_type = type;
}
/**
Set value to NULL
@param type Data type.
*/
void set_null_value(Item_result type) {
assert_locked();
free_value();
reset_value();
m_type = type;
}
void set_used_query_id(query_id_t query_id) { m_used_query_id = query_id; }
query_id_t used_query_id() const { return m_used_query_id; }
/**
Allocates and initializes a user variable instance.
@param thd Current session.
@param name Name of the variable.
@param cs Charset of the variable.
@return Address of the allocated and initialized user_var_entry instance.
@retval NULL On allocation error.
*/
static user_var_entry *create(THD *thd, const Name_string &name,
const CHARSET_INFO *cs);
/**
Free all memory used by a user_var_entry instance
previously created by create().
*/
void destroy() {
assert_locked();
free_value(); // Free the external value buffer
my_free(this); // Free the instance itself
}
void lock();
void unlock();
/* Routines to access the value and its type */
const char *ptr() const { return m_ptr; }
size_t length() const { return m_length; }
Item_result type() const { return m_type; }
/* Item-alike routines to access the value */
double val_real(bool *null_value) const;
longlong val_int(bool *null_value) const;
String *val_str(bool *null_value, String *str, uint decimals) const;
my_decimal *val_decimal(bool *null_value, my_decimal *result) const;
};
/**
This class is used to implement operations like
SET \@variable or \@variable:= expression.
*/
class Item_func_set_user_var : public Item_var_func {
enum Item_result cached_result_type;
user_var_entry *entry{nullptr};
String value;
my_decimal decimal_buff;
bool null_item;
union {
longlong vint;
double vreal;
String *vstr;
my_decimal *vdec;
} save_result;
public:
Name_string name; // keep it public
Item_func_set_user_var(Name_string a, Item *b) : Item_var_func(b), name(a) {}
Item_func_set_user_var(const POS &pos, Name_string a, Item *b)
: Item_var_func(pos, b), name(a) {}
Item_func_set_user_var(THD *thd, Item_func_set_user_var *item)
: Item_var_func(thd, item),
cached_result_type(item->cached_result_type),
entry(item->entry),
value(item->value),
decimal_buff(item->decimal_buff),
null_item(item->null_item),
save_result(item->save_result),
name(item->name) {}
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;
bool update_hash(const void *ptr, uint length, enum Item_result type,
const CHARSET_INFO *cs, Derivation dv, bool unsigned_arg);
bool send(Protocol *protocol, String *str_arg) override;
void make_field(Send_field *tmp_field) override;
bool check(bool use_result_field);
void save_item_result(Item *item);
bool update();
enum Item_result result_type() const override { return cached_result_type; }
bool fix_fields(THD *thd, Item **ref) override;
bool resolve_type(THD *) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
void print_assignment(const THD *thd, String *str,
enum_query_type query_type) const;
const char *func_name() const override { return "set_user_var"; }
type_conversion_status save_in_field(Field *field, bool no_conversions,
bool can_use_result_field);
void save_org_in_field(Field *field) override {
save_in_field(field, true, false);
}
bool set_entry(THD *thd, bool create_if_not_exists);
void cleanup() override;
protected:
type_conversion_status save_in_field_inner(Field *field,
bool no_conversions) override {
return save_in_field(field, no_conversions, true);
}
};
class Item_func_get_user_var : public Item_var_func,
private Settable_routine_parameter {
user_var_entry *var_entry;
Item_result m_cached_result_type;
public:
Name_string name; // keep it public
Item_func_get_user_var(Name_string a)
: Item_var_func(), m_cached_result_type(STRING_RESULT), name(a) {}
Item_func_get_user_var(const POS &pos, Name_string a)
: Item_var_func(pos), m_cached_result_type(STRING_RESULT), name(a) {}
enum Functype functype() const override { return GUSERVAR_FUNC; }
double val_real() override;
longlong val_int() override;
my_decimal *val_decimal(my_decimal *) override;
String *val_str(String *str) override;
const CHARSET_INFO *charset_for_protocol() override;
bool resolve_type(THD *) override;
bool propagate_type(THD *thd, const Type_properties &type) override;
void cleanup() override;
void update_used_tables() override {} // Keep existing used tables
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
enum Item_result result_type() const 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)
*/
const char *func_name() const override { return "get_user_var"; }
bool is_non_const_over_literals(uchar *) override { return true; }
bool eq(const Item *item, bool binary_cmp) const override;
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 const mem_root_deque<Item> and desire to place this code somewhere near
other functions working with user variables.
*/
class Item_user_var_as_out_param : public Item {
Name_string name;
user_var_entry *entry;
public:
Item_user_var_as_out_param(const POS &pos, Name_string a)
: Item(pos), name(a) {
item_name.copy(a);
}
/* We should return something different from FIELD_ITEM here */
enum Type type() const override { return STRING_ITEM; }
double val_real() override;
longlong val_int() override;
String *val_str(String *str) override;
my_decimal *val_decimal(my_decimal *decimal_buffer) override;
bool get_date(MYSQL_TIME *, my_time_flags_t) override {
assert(0);
return true;
}
bool get_time(MYSQL_TIME *) override {
assert(0);
return true;
}
/* fix_fields() binds variable name with its entry structure */
bool fix_fields(THD *thd, Item **ref) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
void set_null_value(const CHARSET_INFO *cs);
void set_value(const char *str, size_t length, const CHARSET_INFO *cs);
};
/* 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;
/** Class to log audit event MYSQL_AUDIT_GLOBAL_VARIABLE_GET. */
class Audit_global_variable_get_event {
public:
Audit_global_variable_get_event(THD *thd, Item_func_get_system_var *item,
uchar cache_type);
~Audit_global_variable_get_event();
private:
// Thread handle.
THD *m_thd;
// Item_func_get_system_var instance.
Item_func_get_system_var *m_item;
/*
Value conversion type.
Depending on the value conversion type GET_SYS_VAR_CACHE_* is stored in this
member while creating the object. While converting value if there are any
intermediate conversions in the same query then this member is used to avoid
auditing more than once.
*/
uchar m_val_type;
/*
To indicate event auditing is required or not. Event is not audited if
* scope of the variable is *not* GLOBAL.
* or the event is already audited for global variable for the same query.
*/
bool m_audit_event;
};
class Item_func_get_system_var final : public Item_var_func {
const enum_var_type var_scope;
longlong cached_llval;
double cached_dval;
String cached_strval;
bool cached_null_value;
query_id_t used_query_id;
uchar cache_present;
const System_variable_tracker var_tracker;
template <typename T>
longlong get_sys_var_safe(THD *thd, sys_var *var);
friend class Audit_global_variable_get_event;
public:
Item_func_get_system_var(const System_variable_tracker &,
enum_var_type scope);
enum Functype functype() const override { return GSYSVAR_FUNC; }
table_map get_initial_pseudo_tables() const override {
return INNER_TABLE_BIT;
}
bool resolve_type(THD *) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
bool is_non_const_over_literals(uchar *) override { return true; }
enum Item_result result_type() const override {
assert(fixed);
return type_to_result(data_type());
}
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);
}
/* TODO: fix to support views */
const char *func_name() const override { return "get_system_var"; }
bool eq(const Item *item, bool binary_cmp) const override;
bool is_valid_for_pushdown(uchar *arg [[maybe_unused]]) override {
// Expressions which have system variables cannot be pushed as of
// now because Item_func_get_system_var::print does not print the
// original expression which leads to an incorrect clone.
return true;
}
void cleanup() override;
};
class JOIN;
class Item_func_match final : public Item_real_func {
typedef Item_real_func super;
public:
Item *against;
uint key, flags;
/// True if we are doing a full-text index scan with this MATCH function as a
/// predicate, and the score can be retrieved with get_relevance(). If it is
/// false, the score of the document must be retrieved with find_relevance().
bool score_from_index_scan{false};
DTCollation cmp_collation;
FT_INFO *ft_handler;
Table_ref *table_ref;
/**
Master item means that if identical items are present in the
statement, they use the same FT handler. FT handler is initialized
only for master item and slave items just use it. FT hints initialized
for master only, slave items HINTS are not accessed.
*/
Item_func_match *master;
Item *concat_ws; // Item_func_concat_ws
String value; // value of concat_ws
String search_value; // key_item()'s value converted to cmp_collation
/**
Constructor for Item_func_match class.
@param pos Position of token in the parser.
@param a List of arguments.
@param against_arg Expression to match against.
@param b FT Flags.
*/
Item_func_match(const POS &pos, PT_item_list *a, Item *against_arg, uint b)
: Item_real_func(pos, a),
against(against_arg),
key(0),
flags(b),
ft_handler(nullptr),
table_ref(nullptr),
master(nullptr),
concat_ws(nullptr),
hints(nullptr),
simple_expression(false),
used_in_where_only(false) {
null_on_null = false;
}
bool itemize(Parse_context *pc, Item **res) override;
void cleanup() override {
DBUG_TRACE;
Item_real_func::cleanup();
if (master == nullptr && ft_handler != nullptr) {
ft_handler->please->close_search(ft_handler);
}
score_from_index_scan = false;
ft_handler = nullptr;
concat_ws = nullptr;
return;
}
Item *key_item() const override { return against; }
enum Functype functype() const override { return FT_FUNC; }
const char *func_name() const override { return "match"; }
bool fix_fields(THD *thd, Item **ref) override;
void update_used_tables() override;
bool eq(const Item *, bool binary_cmp) const override;
/* The following should be safe, even if we compare doubles */
longlong val_int() override {
assert(fixed);
return val_real() != 0.0;
}
double val_real() override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
bool fix_index(const THD *thd);
bool init_search(THD *thd);
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
/**
Get number of matching rows from FT handler.
@note Requires that FT handler supports the extended API
@return Number of matching rows in result
*/
ulonglong get_count() {
assert(ft_handler);
assert(table_ref->table->file->ha_table_flags() & HA_CAN_FULLTEXT_EXT);
return ((FT_INFO_EXT *)ft_handler)
->could_you->count_matches((FT_INFO_EXT *)ft_handler);
}
/**
Check whether FT result is ordered on rank
@return true if result is ordered
@return false otherwise
*/
bool ordered_result() {
assert(!master);
if (hints->get_flags() & FT_SORTED) return true;
if ((table_ref->table->file->ha_table_flags() & HA_CAN_FULLTEXT_EXT) == 0)
return false;
assert(ft_handler);
return ((FT_INFO_EXT *)ft_handler)->could_you->get_flags() &
FTS_ORDERED_RESULT;
}
/**
Check whether FT result contains the document ID
@return true if document ID is available
@return false otherwise
*/
bool docid_in_result() {
assert(ft_handler);
if ((table_ref->table->file->ha_table_flags() & HA_CAN_FULLTEXT_EXT) == 0)
return false;
return ((FT_INFO_EXT *)ft_handler)->could_you->get_flags() &
FTS_DOCID_IN_RESULT;
}
float get_filtering_effect(THD *thd, table_map filter_for_table,
table_map read_tables,
const MY_BITMAP *fields_to_ignore,
double rows_in_table) override;
/**
Returns master MATCH function.
@return pointer to master MATCH function.
*/
Item_func_match *get_master() {
if (master) return master->get_master();
return this;
}
/**
Set master MATCH function and adjust used_in_where_only value.
@param item item for which master should be set.
*/
void set_master(Item_func_match *item) {
used_in_where_only &= item->used_in_where_only;
item->master = this;
}
/**
Returns pointer to Ft_hints object belonging to master MATCH function.
@return pointer to Ft_hints object
*/
Ft_hints *get_hints() {
assert(!master);
return hints;
}
/**
Set comparison operation type and and value for master MATCH function.
@param type comparison operation type
@param value_arg comparison operation value
*/
void set_hints_op(enum ft_operation type, double value_arg) {
assert(!master);
hints->set_hint_op(type, value_arg);
}
/**
Set FT hints.
*/
void set_hints(JOIN *join, uint ft_flag, ha_rows ft_limit, bool no_cond);
/**
Check if ranking is not needed.
@return true if ranking is not needed
@return false otherwise
*/
bool can_skip_ranking() {
assert(!master);
return (!(hints->get_flags() & FT_SORTED) && // FT_SORTED is no set
used_in_where_only && // MATCH result is not used
// in expression
hints->get_op_type() == FT_OP_NO); // MATCH is single function
}
/**
Set flag that the function is a simple expression.
@param val true if the function is a simple expression, false otherwise
*/
void set_simple_expression(bool val) {
assert(!master);
simple_expression = val;
}
/**
Check if this MATCH function is a simple expression in WHERE condition.
@return true if simple expression
@return false otherwise
*/
bool is_simple_expression() {
assert(!master);
return simple_expression;
}
private:
/**
Fulltext index hints, initialized for master MATCH function only.
*/
Ft_hints *hints;
/**
Flag is true when MATCH function is used as a simple expression in
WHERE condition, i.e. there is no AND/OR combinations, just simple
MATCH function or [MATCH, rank] comparison operation.
*/
bool simple_expression;
/**
true if MATCH function is used in WHERE condition only.
Used to determine what hints can be used for FT handler.
Note that only master MATCH function has valid value.
it's ok since only master function is involved in the hint processing.
*/
bool used_in_where_only;
/**
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 tr 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(const TABLE *tr) {
// Only Boolean search may support non_indexed columns
if (!(flags & FT_BOOL)) return false;
assert(tr && tr->file);
// Assume that if extended fulltext API is not supported,
// non-indexed columns are allowed. This will be true for MyISAM.
if ((tr->file->ha_table_flags() & HA_CAN_FULLTEXT_EXT) == 0) return true;
return false;
}
};
/**
A visitor that calls the specified function on every non-aggregated full-text
search function (Item_func_match) it encounters when it is used in a
PREFIX+POSTFIX walk with WalkItem(). It skips every item that is wrapped in an
aggregate function, and also every item wrapped in a reference, as the items
behind the reference are already handled elsewhere (in another query block or
in another element of the SELECT list).
*/
class NonAggregatedFullTextSearchVisitor : private Item_tree_walker {
public:
explicit NonAggregatedFullTextSearchVisitor(
std::function<bool(Item_func_match *)> func);
bool operator()(Item *item);
private:
std::function<bool(Item_func_match *)> m_func;
};
class Item_func_is_free_lock final : public Item_int_func {
typedef Item_int_func super;
String value;
public:
Item_func_is_free_lock(const POS &pos, Item *a) : Item_int_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "is_free_lock"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
max_length = 1;
set_nullable(true);
return false;
}
bool is_non_const_over_literals(uchar *) override { return true; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_func_is_used_lock final : public Item_int_func {
typedef Item_int_func super;
String value;
public:
Item_func_is_used_lock(const POS &pos, Item *a) : Item_int_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "is_used_lock"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
unsigned_flag = true;
set_nullable(true);
return false;
}
bool is_non_const_over_literals(uchar *) override { return true; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_func_row_count final : public Item_int_func {
typedef Item_int_func super;
public:
explicit Item_func_row_count(const POS &pos) : Item_int_func(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "row_count"; }
bool resolve_type(THD *) override {
set_nullable(false);
return false;
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
/*
*
* Stored FUNCTIONs
*
*/
class sp_head;
class sp_name;
class Item_func_sp final : public Item_func {
typedef Item_func super;
private:
Name_resolution_context *context{nullptr};
/// The name of the stored function
sp_name *m_name{nullptr};
/// Pointer to actual function instance (null when not resolved or executing)
sp_head *m_sp{nullptr};
/// The result field of the concrete stored function.
Field *sp_result_field{nullptr};
/// true when function execution is deterministic
bool m_deterministic{false};
bool execute();
bool execute_impl(THD *thd);
bool init_result_field(THD *thd);
protected:
bool is_expensive_processor(uchar *) override { return true; }
public:
Item_func_sp(const POS &pos, const LEX_STRING &db_name,
const LEX_STRING &fn_name, bool use_explicit_name,
PT_item_list *opt_list);
bool itemize(Parse_context *pc, Item **res) override;
/**
Must not be called before the procedure is resolved,
i.e. @c init_result_field().
*/
table_map get_initial_pseudo_tables() const override;
void update_used_tables() override;
void fix_after_pullout(Query_block *parent_query_block,
Query_block *removed_query_block) override;
void cleanup() override;
const char *func_name() const override;
Field *tmp_table_field(TABLE *t_arg) override;
void make_field(Send_field *tmp_field) override;
Item_result result_type() const override;
longlong val_int() override;
double val_real() override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override;
bool get_time(MYSQL_TIME *ltime) override;
my_decimal *val_decimal(my_decimal *dec_buf) override;
String *val_str(String *str) override;
bool val_json(Json_wrapper *result) override;
bool change_context_processor(uchar *arg) override {
context = reinterpret_cast<Item_ident::Change_context *>(arg)->m_context;
return false;
}
bool sp_check_access(THD *thd);
enum Functype functype() const override { return FUNC_SP; }
bool fix_fields(THD *thd, Item **ref) override;
bool resolve_type(THD *thd) override;
bool is_expensive() override { return true; }
inline Field *get_sp_result_field() { return sp_result_field; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
class Item_func_found_rows final : public Item_int_func {
typedef Item_int_func super;
public:
explicit Item_func_found_rows(const POS &pos) : Item_int_func(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
const char *func_name() const override { return "found_rows"; }
bool resolve_type(THD *) override {
set_nullable(false);
return false;
}
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return true;
}
};
void uuid_short_init();
class Item_func_uuid_short final : public Item_int_func {
typedef Item_int_func super;
public:
Item_func_uuid_short(const POS &pos) : Item_int_func(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
const char *func_name() const override { return "uuid_short"; }
longlong val_int() override;
bool resolve_type(THD *) override {
unsigned_flag = true;
return false;
}
bool check_partition_func_processor(uchar *) override { return false; }
bool check_function_as_value_generator(uchar *checker_args) override {
Check_function_as_value_generator_parameters *func_arg =
pointer_cast<Check_function_as_value_generator_parameters *>(
checker_args);
func_arg->banned_function_name = func_name();
return ((func_arg->source == VGS_GENERATED_COLUMN) ||
(func_arg->source == VGS_CHECK_CONSTRAINT));
}
// This function is random, see uuid_short_init().
table_map get_initial_pseudo_tables() const override {
return RAND_TABLE_BIT;
}
};
class Item_func_version final : public Item_static_string_func {
typedef Item_static_string_func super;
public:
explicit Item_func_version(const POS &pos);
bool itemize(Parse_context *pc, Item **res) override;
};
/**
Internal function used by INFORMATION_SCHEMA implementation to check
if a role is a mandatory role.
*/
class Item_func_internal_is_mandatory_role : public Item_int_func {
public:
Item_func_internal_is_mandatory_role(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
longlong val_int() override;
const char *func_name() const override {
return "internal_is_mandatory_role";
}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
/**
Internal function used by INFORMATION_SCHEMA implementation to check
if a role is enabled.
*/
class Item_func_internal_is_enabled_role : public Item_int_func {
public:
Item_func_internal_is_enabled_role(const POS &pos, Item *a, Item *b)
: Item_int_func(pos, a, b) {}
longlong val_int() override;
const char *func_name() const override { return "internal_is_enabled_role"; }
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_nullable(true);
return false;
}
};
/**
Create new Item_func_get_system_var object
@param pc Parse context
@param scope Scope of the variable (GLOBAL, SESSION, PERSISTENT ...)
@param prefix Empty LEX_CSTRING{} or the left hand side of the composite
variable name, e.g.:
* component name of the component-registered variable
* name of MyISAM Multiple Key Cache.
@param suffix Name of the variable (if prefix is empty) or the right
hand side of the composite variable name, e.g.:
* name of the component-registered variable
* property name of MyISAM Multiple Key Cache variable.
@param unsafe_for_replication force writing this system variable to binlog
(if not written yet)
@returns new item on success, otherwise nullptr
*/
Item *get_system_variable(Parse_context *pc, enum_var_type scope,
const LEX_CSTRING &prefix, const LEX_CSTRING &suffix,
bool unsafe_for_replication);
inline Item *get_system_variable(Parse_context *pc, enum_var_type scope,
const LEX_CSTRING &trivial_name,
bool unsafe_for_replication) {
return get_system_variable(pc, scope, {}, trivial_name,
unsafe_for_replication);
}
extern bool check_reserved_words(const char *name);
extern enum_field_types agg_field_type(Item **items, uint nitems);
double my_double_round(double value, longlong dec, bool dec_unsigned,
bool truncate);
bool eval_const_cond(THD *thd, Item *cond, bool *value);
Item_field *get_gc_for_expr(const Item *func, Field *fld, Item_result type,
Field **found = nullptr);
void retrieve_tablespace_statistics(THD *thd, Item **args, bool *null_value);
bool is_function_of_type(const Item *item, Item_func::Functype type);
extern bool volatile mqh_used;
/// Checks if "item" is a function of the specified type.
bool is_function_of_type(const Item *item, Item_func::Functype type);
/// Checks if "item" contains a function of the specified type.
bool contains_function_of_type(Item *item, Item_func::Functype type);
#endif /* ITEM_FUNC_INCLUDED */
|