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
|
/* 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 */
/* This file defines all string functions */
#ifndef ITEM_STRFUNC_INCLUDED
#define ITEM_STRFUNC_INCLUDED
#include <assert.h>
#include <sys/types.h>
#include <cstdint> // uint32_t
#include "lex_string.h"
#include "libbinlogevents/include/uuid.h" // Uuid
#include "m_ctype.h"
#include "my_hostname.h" // HOSTNAME_LENGTH
#include "my_inttypes.h"
#include "my_table_map.h"
#include "my_time.h"
#include "mysql/udf_registration_types.h"
#include "mysql_com.h"
#include "mysql_time.h"
#include "sql/enum_query_type.h"
#include "sql/field.h"
#include "sql/item.h"
#include "sql/item_cmpfunc.h" // Item_bool_func
#include "sql/item_func.h" // Item_func
#include "sql/parse_location.h" // POS
#include "sql/sql_const.h"
#include "sql_string.h"
#include "template_utils.h" // pointer_cast
class MY_LOCALE;
class PT_item_list;
class THD;
class my_decimal;
struct Parse_context;
template <class T>
class List;
CHARSET_INFO *mysqld_collation_get_by_name(
const char *name, CHARSET_INFO *name_cs = system_charset_info);
/**
Generate Universal Unique Identifier (UUID).
@param str Pointer to string which will hold the UUID.
@return str Pointer to string which contains the UUID.
*/
String *mysql_generate_uuid(String *str);
class Item_str_func : public Item_func {
typedef Item_func super;
public:
Item_str_func() : Item_func() {}
explicit Item_str_func(const POS &pos) : super(pos) {}
Item_str_func(Item *a) : Item_func(a) {}
Item_str_func(const POS &pos, Item *a) : Item_func(pos, a) {}
Item_str_func(Item *a, Item *b) : Item_func(a, b) {}
Item_str_func(const POS &pos, Item *a, Item *b) : Item_func(pos, a, b) {}
Item_str_func(Item *a, Item *b, Item *c) : Item_func(a, b, c) {}
Item_str_func(const POS &pos, Item *a, Item *b, Item *c)
: Item_func(pos, a, b, c) {}
Item_str_func(Item *a, Item *b, Item *c, Item *d) : Item_func(a, b, c, d) {}
Item_str_func(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_func(pos, a, b, c, d) {}
Item_str_func(Item *a, Item *b, Item *c, Item *d, Item *e)
: Item_func(a, b, c, d, e) {}
Item_str_func(const POS &pos, Item *a, Item *b, Item *c, Item *d, Item *e)
: Item_func(pos, a, b, c, d, e) {}
Item_str_func(const POS &pos, Item *a, Item *b, Item *c, Item *d, Item *e,
Item *f)
: Item_func(pos, a, b, c, d, e, f) {}
explicit Item_str_func(mem_root_deque<Item *> *list) : Item_func(list) {}
Item_str_func(const POS &pos, PT_item_list *opt_list)
: Item_func(pos, opt_list) {}
longlong val_int() override { return val_int_from_string(); }
double val_real() override { return val_real_from_string(); }
my_decimal *val_decimal(my_decimal *) override;
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; }
void left_right_max_length(THD *thd);
bool fix_fields(THD *thd, Item **ref) override;
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, -1)) return true;
return false;
}
String *val_str_from_val_str_ascii(String *str, String *str2);
protected:
/**
Calls push_warning_printf for packet overflow.
@return error_str().
*/
String *push_packet_overflow_warning(THD *thd, const char *func);
};
/*
Functions that return values with ASCII repertoire
*/
class Item_str_ascii_func : public Item_str_func {
String ascii_buf;
public:
Item_str_ascii_func() : Item_str_func() {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
Item_str_ascii_func(Item *a) : Item_str_func(a) {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
Item_str_ascii_func(const POS &pos, Item *a) : Item_str_func(pos, a) {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
Item_str_ascii_func(Item *a, Item *b) : Item_str_func(a, b) {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
Item_str_ascii_func(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
Item_str_ascii_func(Item *a, Item *b, Item *c) : Item_str_func(a, b, c) {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
Item_str_ascii_func(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {
collation.set_repertoire(MY_REPERTOIRE_ASCII);
}
String *val_str(String *str) override {
return val_str_from_val_str_ascii(str, &ascii_buf);
}
String *val_str_ascii(String *) override = 0;
};
class Item_func_md5 final : public Item_str_ascii_func {
String tmp_value;
public:
Item_func_md5(const POS &pos, Item *a) : Item_str_ascii_func(pos, a) {}
String *val_str_ascii(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "md5"; }
};
class Item_func_sha : public Item_str_ascii_func {
public:
Item_func_sha(const POS &pos, Item *a) : Item_str_ascii_func(pos, a) {}
String *val_str_ascii(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "sha"; }
};
class Item_func_sha2 : public Item_str_ascii_func {
public:
Item_func_sha2(const POS &pos, Item *a, Item *b)
: Item_str_ascii_func(pos, a, b) {}
String *val_str_ascii(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "sha2"; }
};
class Item_func_to_base64 final : public Item_str_ascii_func {
String tmp_value;
public:
Item_func_to_base64(const POS &pos, Item *a) : Item_str_ascii_func(pos, a) {}
String *val_str_ascii(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "to_base64"; }
};
class Item_func_statement_digest final : public Item_str_ascii_func {
public:
Item_func_statement_digest(const POS &pos, Item *query_string)
: Item_str_ascii_func(pos, query_string) {}
const char *func_name() const override { return "statement_digest"; }
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);
}
bool resolve_type(THD *thd) override;
String *val_str_ascii(String *) override;
private:
uchar *m_token_buffer{nullptr};
};
class Item_func_statement_digest_text final : public Item_str_func {
public:
Item_func_statement_digest_text(const POS &pos, Item *query_string)
: Item_str_func(pos, query_string) {}
const char *func_name() const override { return "statement_digest_text"; }
/**
The type is always LONGTEXT, just like the digest_text columns in
Performance Schema
*/
bool resolve_type(THD *thd) 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);
}
String *val_str(String *) override;
private:
uchar *m_token_buffer{nullptr};
};
class Item_func_from_base64 final : public Item_str_func {
String tmp_value;
public:
Item_func_from_base64(const POS &pos, Item *a) : Item_str_func(pos, a) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "from_base64"; }
};
class Item_func_aes_encrypt final : public Item_str_func {
String tmp_value;
typedef Item_str_func super;
public:
Item_func_aes_encrypt(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
Item_func_aes_encrypt(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
Item_func_aes_encrypt(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_str_func(pos, a, b, c, d) {}
Item_func_aes_encrypt(const POS &pos, Item *a, Item *b, Item *c, Item *d,
Item *e)
: Item_str_func(pos, a, b, c, d, e) {}
Item_func_aes_encrypt(const POS &pos, Item *a, Item *b, Item *c, Item *d,
Item *e, Item *f)
: Item_str_func(pos, a, b, c, d, e, f) {}
bool itemize(Parse_context *pc, Item **res) override;
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "aes_encrypt"; }
};
class Item_func_aes_decrypt : public Item_str_func {
typedef Item_str_func super;
public:
Item_func_aes_decrypt(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
Item_func_aes_decrypt(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
Item_func_aes_decrypt(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_str_func(pos, a, b, c, d) {}
Item_func_aes_decrypt(const POS &pos, Item *a, Item *b, Item *c, Item *d,
Item *e)
: Item_str_func(pos, a, b, c, d, e) {}
Item_func_aes_decrypt(const POS &pos, Item *a, Item *b, Item *c, Item *d,
Item *e, Item *f)
: Item_str_func(pos, a, b, c, d, e, f) {}
bool itemize(Parse_context *pc, Item **res) override;
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "aes_decrypt"; }
};
class Item_func_random_bytes : public Item_str_func {
typedef Item_str_func super;
/** limitation from the SSL library */
static const ulonglong MAX_RANDOM_BYTES_BUFFER;
public:
Item_func_random_bytes(const POS &pos, Item *a) : Item_str_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
bool resolve_type(THD *thd) override;
String *val_str(String *a) override;
const char *func_name() const override { return "random_bytes"; }
table_map get_initial_pseudo_tables() const override {
return RAND_TABLE_BIT;
}
};
class Item_func_concat : public Item_str_func {
String tmp_value{"", 0, collation.collation}; // Initialize to empty
public:
Item_func_concat(const POS &pos, PT_item_list *opt_list)
: Item_str_func(pos, opt_list) {}
Item_func_concat(Item *a, Item *b) : Item_str_func(a, b) {}
Item_func_concat(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "concat"; }
};
class Item_func_concat_ws : public Item_str_func {
String tmp_value{"", 0, collation.collation}; // Initialize to empty
public:
explicit Item_func_concat_ws(mem_root_deque<Item *> *list)
: Item_str_func(list) {
null_on_null = false;
}
Item_func_concat_ws(const POS &pos, PT_item_list *opt_list)
: Item_str_func(pos, opt_list) {
null_on_null = false;
}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "concat_ws"; }
};
class Item_func_reverse : public Item_str_func {
String tmp_value;
public:
Item_func_reverse(Item *a) : Item_str_func(a) {}
Item_func_reverse(const POS &pos, Item *a) : Item_str_func(pos, a) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "reverse"; }
};
class Item_func_replace : public Item_str_func {
String tmp_value, tmp_value2;
/// Holds result in case we need to allocate our own result buffer.
String tmp_value_res{"", 0, &my_charset_bin};
public:
Item_func_replace(const POS &pos, Item *org, Item *find, Item *replace)
: Item_str_func(pos, org, find, replace) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "replace"; }
};
class Item_func_insert : public Item_str_func {
String tmp_value;
/// Holds result in case we need to allocate our own result buffer.
String tmp_value_res;
public:
Item_func_insert(const POS &pos, Item *org, Item *start, Item *length,
Item *new_str)
: Item_str_func(pos, org, start, length, new_str) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "insert"; }
};
class Item_str_conv : public Item_str_func {
protected:
uint multiply;
my_charset_conv_case converter;
String tmp_value;
public:
Item_str_conv(const POS &pos, Item *item) : Item_str_func(pos, item) {}
String *val_str(String *) override;
};
class Item_func_lower : public Item_str_conv {
public:
Item_func_lower(const POS &pos, Item *item) : Item_str_conv(pos, item) {}
const char *func_name() const override { return "lower"; }
bool resolve_type(THD *) override;
};
class Item_func_upper : public Item_str_conv {
public:
Item_func_upper(const POS &pos, Item *item) : Item_str_conv(pos, item) {}
const char *func_name() const override { return "upper"; }
bool resolve_type(THD *) override;
};
class Item_func_left : public Item_str_func {
String tmp_value;
public:
Item_func_left(const POS &pos, Item *a, Item *b) : Item_str_func(pos, a, b) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "left"; }
};
class Item_func_right : public Item_str_func {
String tmp_value;
public:
Item_func_right(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "right"; }
};
class Item_func_substr : public Item_str_func {
typedef Item_str_func super;
String tmp_value;
public:
Item_func_substr(Item *a, Item *b) : Item_str_func(a, b) {}
Item_func_substr(const POS &pos, Item *a, Item *b) : super(pos, a, b) {}
Item_func_substr(Item *a, Item *b, Item *c) : Item_str_func(a, b, c) {}
Item_func_substr(const POS &pos, Item *a, Item *b, Item *c)
: super(pos, a, b, c) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "substr"; }
};
class Item_func_substr_index final : public Item_str_func {
String tmp_value;
public:
Item_func_substr_index(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "substring_index"; }
};
class Item_func_trim : public Item_str_func {
public:
/**
Why all the trim modes in this enum?
We need to maintain parsing information, so that our print() function
can reproduce correct messages and view definitions.
*/
enum TRIM_MODE {
TRIM_BOTH_DEFAULT,
TRIM_BOTH,
TRIM_LEADING,
TRIM_TRAILING,
TRIM_LTRIM,
TRIM_RTRIM
};
private:
String tmp_value;
String remove;
const TRIM_MODE m_trim_mode;
const bool m_trim_leading;
const bool m_trim_trailing;
public:
Item_func_trim(Item *a, Item *b, TRIM_MODE tm)
: Item_str_func(a, b),
m_trim_mode(tm),
m_trim_leading(trim_leading()),
m_trim_trailing(trim_trailing()) {}
Item_func_trim(const POS &pos, Item *a, Item *b, TRIM_MODE tm)
: Item_str_func(pos, a, b),
m_trim_mode(tm),
m_trim_leading(trim_leading()),
m_trim_trailing(trim_trailing()) {}
Item_func_trim(Item *a, TRIM_MODE tm)
: Item_str_func(a),
m_trim_mode(tm),
m_trim_leading(trim_leading()),
m_trim_trailing(trim_trailing()) {}
Item_func_trim(const POS &pos, Item *a, TRIM_MODE tm)
: Item_str_func(pos, a),
m_trim_mode(tm),
m_trim_leading(trim_leading()),
m_trim_trailing(trim_trailing()) {}
bool trim_leading() const {
return m_trim_mode == TRIM_BOTH_DEFAULT || m_trim_mode == TRIM_BOTH ||
m_trim_mode == TRIM_LEADING || m_trim_mode == TRIM_LTRIM;
}
bool trim_trailing() const {
return m_trim_mode == TRIM_BOTH_DEFAULT || m_trim_mode == TRIM_BOTH ||
m_trim_mode == TRIM_TRAILING || m_trim_mode == TRIM_RTRIM;
}
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override {
switch (m_trim_mode) {
case TRIM_BOTH_DEFAULT:
return "trim";
case TRIM_BOTH:
return "trim";
case TRIM_LEADING:
return "ltrim";
case TRIM_TRAILING:
return "rtrim";
case TRIM_LTRIM:
return "ltrim";
case TRIM_RTRIM:
return "rtrim";
}
return nullptr;
}
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_ltrim final : public Item_func_trim {
public:
Item_func_ltrim(const POS &pos, Item *a)
: Item_func_trim(pos, a, TRIM_LTRIM) {}
};
class Item_func_rtrim final : public Item_func_trim {
public:
Item_func_rtrim(const POS &pos, Item *a)
: Item_func_trim(pos, a, TRIM_RTRIM) {}
};
class Item_func_sysconst : public Item_str_func {
typedef Item_str_func super;
public:
Item_func_sysconst() {
collation.set(system_charset_info, DERIVATION_SYSCONST);
}
explicit Item_func_sysconst(const POS &pos) : super(pos) {
collation.set(system_charset_info, DERIVATION_SYSCONST);
}
Item *safe_charset_converter(THD *thd, const CHARSET_INFO *tocs) override;
/*
Used to create correct Item name in new converted item in
safe_charset_converter, return string representation of this function
call
*/
virtual const Name_string fully_qualified_func_name() const = 0;
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_func_database : public Item_func_sysconst {
typedef Item_func_sysconst super;
public:
explicit Item_func_database(const POS &pos) : Item_func_sysconst(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
String *val_str(String *) override;
bool resolve_type(THD *) override {
set_data_type_string(uint32{NAME_CHAR_LEN});
set_nullable(true);
return false;
}
const char *func_name() const override { return "database"; }
const Name_string fully_qualified_func_name() const override {
return NAME_STRING("database()");
}
};
class Item_func_user : public Item_func_sysconst {
typedef Item_func_sysconst super;
protected:
/// True when function value is evaluated, set to false after each execution
bool m_evaluated = false;
/// Evaluate user name, must be called once per execution
bool evaluate(const char *user, const char *host);
type_conversion_status save_in_field_inner(Field *field, bool) override;
public:
Item_func_user() { str_value.set("", 0, system_charset_info); }
explicit Item_func_user(const POS &pos) : super(pos) {
str_value.set("", 0, system_charset_info);
}
table_map get_initial_pseudo_tables() const override {
return INNER_TABLE_BIT;
}
bool itemize(Parse_context *pc, Item **res) 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));
}
bool resolve_type(THD *) override {
set_data_type_string(uint32{USERNAME_CHAR_LENGTH + HOSTNAME_LENGTH + 1U});
return false;
}
void cleanup() override {
m_evaluated = false;
str_value.mem_free();
super::cleanup();
}
const char *func_name() const override { return "user"; }
const Name_string fully_qualified_func_name() const override {
return NAME_STRING("user()");
}
String *val_str(String *) override;
};
class Item_func_current_user : public Item_func_user {
typedef Item_func_user super;
/*
Used to pass a security context to the resolver functions.
Only used for definer views. In all other contexts, the security context
passed here is nullptr and is instead looked up dynamically at run time
from the current THD.
*/
Name_resolution_context *context = nullptr;
// Copied from context in fix_fields if definer Security_context
// is set in Name_resolution_context
LEX_CSTRING definer_priv_user = {};
LEX_CSTRING definer_priv_host = {};
protected:
type_conversion_status save_in_field_inner(Field *field, bool) override;
// Overridden to copy definer priv_user and priv_host
bool resolve_type(THD *) override;
public:
explicit Item_func_current_user(const POS &pos) : super(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
const char *func_name() const override { return "current_user"; }
const Name_string fully_qualified_func_name() const override {
return NAME_STRING("current_user()");
}
String *val_str(String *) override;
};
class Item_func_soundex : public Item_str_func {
String tmp_value;
public:
Item_func_soundex(Item *a) : Item_str_func(a) {}
Item_func_soundex(const POS &pos, Item *a) : Item_str_func(pos, a) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "soundex"; }
};
class Item_func_elt final : public Item_str_func {
public:
Item_func_elt(const POS &pos, PT_item_list *opt_list)
: Item_str_func(pos, opt_list) {}
double val_real() override;
longlong val_int() override;
String *val_str(String *str) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "elt"; }
};
class Item_func_make_set final : public Item_str_func {
typedef Item_str_func super;
Item *item;
String tmp_str;
public:
Item_func_make_set(const POS &pos, Item *a, PT_item_list *opt_list)
: Item_str_func(pos, opt_list), item(a) {}
bool itemize(Parse_context *pc, Item **res) override;
String *val_str(String *str) override;
bool fix_fields(THD *thd, Item **ref) override;
void fix_after_pullout(Query_block *parent_query_block,
Query_block *removed_query_block) override;
void split_sum_func(THD *thd, Ref_item_array ref_item_array,
mem_root_deque<Item *> *fields) override;
bool resolve_type(THD *) override;
void update_used_tables() override;
const char *func_name() const override { return "make_set"; }
bool walk(Item_processor processor, enum_walk walk, uchar *arg) override {
if ((walk & enum_walk::PREFIX) && (this->*processor)(arg)) return true;
if (item->walk(processor, walk, arg)) return true;
for (uint i = 0; i < arg_count; i++) {
if (args[i]->walk(processor, walk, arg)) return true;
}
return ((walk & enum_walk::POSTFIX) && (this->*processor)(arg));
}
Item *transform(Item_transformer transformer, uchar *arg) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_format final : public Item_str_ascii_func {
String tmp_str;
MY_LOCALE *locale;
public:
Item_func_format(const POS &pos, Item *org, Item *dec)
: Item_str_ascii_func(pos, org, dec) {}
Item_func_format(const POS &pos, Item *org, Item *dec, Item *lang)
: Item_str_ascii_func(pos, org, dec, lang) {}
MY_LOCALE *get_locale(Item *item);
String *val_str_ascii(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "format"; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_char final : public Item_str_func {
public:
Item_func_char(const POS &pos, PT_item_list *list)
: Item_str_func(pos, list) {
collation.set(&my_charset_bin);
}
Item_func_char(const POS &pos, PT_item_list *list, const CHARSET_INFO *cs)
: Item_str_func(pos, list) {
collation.set(cs);
}
String *val_str(String *) override;
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_LONGLONG)) return true;
set_data_type_string(arg_count * 4U);
return false;
}
const char *func_name() const override { return "char"; }
};
class Item_func_repeat final : public Item_str_func {
String tmp_value;
public:
Item_func_repeat(const POS &pos, Item *arg1, Item *arg2)
: Item_str_func(pos, arg1, arg2) {}
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "repeat"; }
};
class Item_func_space final : public Item_str_func {
public:
Item_func_space(const POS &pos, Item *arg1) : Item_str_func(pos, arg1) {}
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "space"; }
};
class Item_func_rpad final : public Item_str_func {
String tmp_value, rpad_str;
public:
Item_func_rpad(const POS &pos, Item *arg1, Item *arg2, Item *arg3)
: Item_str_func(pos, arg1, arg2, arg3) {}
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "rpad"; }
};
class Item_func_lpad final : public Item_str_func {
String tmp_value, lpad_str;
public:
Item_func_lpad(const POS &pos, Item *arg1, Item *arg2, Item *arg3)
: Item_str_func(pos, arg1, arg2, arg3) {}
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "lpad"; }
};
class Item_func_uuid_to_bin final : public Item_str_func {
/// Buffer to store the binary result
uchar m_bin_buf[binary_log::Uuid::BYTE_LENGTH];
public:
Item_func_uuid_to_bin(const POS &pos, Item *arg1)
: Item_str_func(pos, arg1) {}
Item_func_uuid_to_bin(const POS &pos, Item *arg1, Item *arg2)
: Item_str_func(pos, arg1, arg2) {}
String *val_str(String *) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "uuid_to_bin"; }
};
class Item_func_bin_to_uuid final : public Item_str_ascii_func {
/// Buffer to store the text result
char m_text_buf[binary_log::Uuid::TEXT_LENGTH + 1];
public:
Item_func_bin_to_uuid(const POS &pos, Item *arg1)
: Item_str_ascii_func(pos, arg1) {}
Item_func_bin_to_uuid(const POS &pos, Item *arg1, Item *arg2)
: Item_str_ascii_func(pos, arg1, arg2) {}
String *val_str_ascii(String *) override;
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "bin_to_uuid"; }
};
class Item_func_is_uuid final : public Item_bool_func {
typedef Item_bool_func super;
public:
Item_func_is_uuid(const POS &pos, Item *a) : Item_bool_func(pos, a) {}
longlong val_int() override;
const char *func_name() const override { return "is_uuid"; }
bool resolve_type(THD *thd) override {
bool res = super::resolve_type(thd);
set_nullable(true);
return res;
}
};
class Item_func_conv final : public Item_str_func {
public:
// 64 digits plus possible '-'.
static constexpr uint32_t CONV_MAX_LENGTH = 64U + 1U;
Item_func_conv(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
const char *func_name() const override { return "conv"; }
String *val_str(String *) override;
bool resolve_type(THD *) override;
};
class Item_func_hex : public Item_str_ascii_func {
String tmp_value;
public:
Item_func_hex(const POS &pos, Item *a) : Item_str_ascii_func(pos, a) {}
const char *func_name() const override { return "hex"; }
String *val_str_ascii(String *) override;
bool resolve_type(THD *thd) override;
};
class Item_func_unhex final : public Item_str_func {
String tmp_value;
public:
Item_func_unhex(const POS &pos, Item *a) : Item_str_func(pos, a) {
/* there can be bad hex strings */
set_nullable(true);
}
const char *func_name() const override { return "unhex"; }
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
};
#ifndef NDEBUG
class Item_func_like_range : public Item_str_func {
protected:
String min_str;
String max_str;
const bool is_min;
public:
Item_func_like_range(const POS &pos, Item *a, Item *b, bool is_min_arg)
: Item_str_func(pos, a, b), is_min(is_min_arg) {
set_nullable(true);
}
String *val_str(String *) override;
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;
set_data_type_string(uint32{MAX_BLOB_WIDTH}, args[0]->collation);
return false;
}
};
class Item_func_like_range_min final : public Item_func_like_range {
public:
Item_func_like_range_min(const POS &pos, Item *a, Item *b)
: Item_func_like_range(pos, a, b, true) {}
const char *func_name() const override { return "like_range_min"; }
};
class Item_func_like_range_max final : public Item_func_like_range {
public:
Item_func_like_range_max(const POS &pos, Item *a, Item *b)
: Item_func_like_range(pos, a, b, false) {}
const char *func_name() const override { return "like_range_max"; }
};
#endif
/**
The following types of conversions are considered safe:
Conversion to and from "binary".
Conversion to Unicode.
Other kind of conversions are potentially lossy.
*/
class Item_charset_conversion : public Item_str_func {
protected:
/// If true, conversion is needed so do it, else allow string copy.
bool m_charset_conversion{false};
/// The character set we are converting to
const CHARSET_INFO *m_cast_cs;
/// The character set we are converting from
const CHARSET_INFO *m_from_cs{nullptr};
String m_tmp_value;
/// Marks whether the underlying Item is constant and may be cached.
bool m_use_cached_value{false};
/// Length argument value, if any given.
longlong m_cast_length{-1}; // a priori not used
public:
bool m_safe;
protected:
/**
Helper for CAST and CONVERT type resolution: common logic to compute the
maximum numbers of characters of the type of the conversion.
@returns the maximum numbers of characters possible after the conversion
*/
uint32 compute_max_char_length();
bool resolve_type(THD *thd) override;
public:
Item_charset_conversion(THD *thd, Item *a, const CHARSET_INFO *cs_arg,
bool cache_if_const)
: Item_str_func(a), m_cast_cs(cs_arg) {
if (cache_if_const && args[0]->may_evaluate_const(thd)) {
uint errors = 0;
String tmp, *str = args[0]->val_str(&tmp);
if (!str || str_value.copy(str->ptr(), str->length(), str->charset(),
m_cast_cs, &errors))
null_value = true;
m_use_cached_value = true;
str_value.mark_as_const();
m_safe = (errors == 0);
} else {
m_use_cached_value = false;
// Marks whether the conversion is safe
m_safe = (args[0]->collation.collation == &my_charset_bin ||
cs_arg == &my_charset_bin || (cs_arg->state & MY_CS_UNICODE));
}
}
Item_charset_conversion(const POS &pos, Item *a, const CHARSET_INFO *cs_arg)
: Item_str_func(pos, a), m_cast_cs(cs_arg) {}
String *val_str(String *) override;
};
class Item_typecast_char final : public Item_charset_conversion {
public:
Item_typecast_char(THD *thd, Item *a, longlong length_arg,
const CHARSET_INFO *cs_arg)
: Item_charset_conversion(thd, a, cs_arg, false) {
m_cast_length = length_arg;
}
Item_typecast_char(const POS &pos, Item *a, longlong length_arg,
const CHARSET_INFO *cs_arg)
: Item_charset_conversion(pos, a, cs_arg) {
m_cast_length = length_arg;
}
enum Functype functype() const override { return TYPECAST_FUNC; }
bool eq(const Item *item, bool binary_cmp) const override;
const char *func_name() const override { return "cast_as_char"; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_load_file final : public Item_str_func {
typedef Item_str_func super;
String tmp_value;
public:
Item_load_file(const POS &pos, Item *a) : Item_str_func(pos, a) {}
bool itemize(Parse_context *pc, Item **res) override;
String *val_str(String *) override;
const char *func_name() const override { return "load_file"; }
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)) return true;
collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
set_data_type_blob(MAX_BLOB_WIDTH);
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_func_export_set final : public Item_str_func {
public:
Item_func_export_set(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
Item_func_export_set(const POS &pos, Item *a, Item *b, Item *c, Item *d)
: Item_str_func(pos, a, b, c, d) {}
Item_func_export_set(const POS &pos, Item *a, Item *b, Item *c, Item *d,
Item *e)
: Item_str_func(pos, a, b, c, d, e) {}
String *val_str(String *str) override;
bool resolve_type(THD *) override;
const char *func_name() const override { return "export_set"; }
};
class Item_func_quote : public Item_str_func {
String tmp_value;
public:
Item_func_quote(const POS &pos, Item *a) : Item_str_func(pos, a) {}
const char *func_name() const override { return "quote"; }
String *val_str(String *) override;
bool resolve_type(THD *thd) override;
};
class Item_func_conv_charset final : public Item_charset_conversion {
public:
Item_func_conv_charset(const POS &pos, Item *a, const CHARSET_INFO *cs)
: Item_charset_conversion(pos, a, cs) {
m_safe = false;
}
Item_func_conv_charset(THD *thd, Item *a, const CHARSET_INFO *cs,
bool cache_if_const)
: Item_charset_conversion(thd, a, cs, cache_if_const) {
assert(args[0]->fixed);
}
const char *func_name() const override { return "convert"; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_set_collation final : public Item_str_func {
typedef Item_str_func super;
LEX_STRING collation_string;
public:
Item_func_set_collation(const POS &pos, Item *a,
const LEX_STRING &collation_string_arg)
: super(pos, a, nullptr), collation_string(collation_string_arg) {}
bool itemize(Parse_context *pc, Item **res) override;
String *val_str(String *) override;
bool resolve_type(THD *) override;
bool eq(const Item *item, bool binary_cmp) const override;
const char *func_name() const override { return "collate"; }
enum Functype functype() const override { return COLLATE_FUNC; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
Item_field *field_for_view_update() override {
/* this function is transparent for view updating */
return args[0]->field_for_view_update();
}
};
class Item_func_charset final : public Item_str_func {
public:
Item_func_charset(const POS &pos, Item *a) : Item_str_func(pos, a) {
null_on_null = false;
}
String *val_str(String *) override;
const char *func_name() const override { return "charset"; }
bool resolve_type(THD *thd) override {
set_data_type_string(64U, system_charset_info);
set_nullable(false);
return Item_str_func::resolve_type(thd);
}
};
class Item_func_collation : public Item_str_func {
public:
Item_func_collation(const POS &pos, Item *a) : Item_str_func(pos, a) {
null_on_null = false;
}
String *val_str(String *) override;
const char *func_name() const override { return "collation"; }
bool resolve_type(THD *thd) override {
if (Item_str_func::resolve_type(thd)) return true;
set_data_type_string(64U, system_charset_info);
set_nullable(false);
return false;
}
};
class Item_func_weight_string final : public Item_str_func {
typedef Item_str_func super;
String tmp_value;
uint flags;
const uint num_codepoints;
const uint result_length;
Item_field *m_field_ref{nullptr};
const bool as_binary;
public:
Item_func_weight_string(const POS &pos, Item *a, uint result_length_arg,
uint num_codepoints_arg, uint flags_arg,
bool as_binary_arg = false)
: Item_str_func(pos, a),
flags(flags_arg),
num_codepoints(num_codepoints_arg),
result_length(result_length_arg),
as_binary(as_binary_arg) {}
bool itemize(Parse_context *pc, Item **res) override;
const char *func_name() const override { return "weight_string"; }
bool eq(const Item *item, bool binary_cmp) const override;
String *val_str(String *) override;
bool resolve_type(THD *) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
};
class Item_func_crc32 final : public Item_int_func {
String value;
public:
Item_func_crc32(const POS &pos, Item *a) : Item_int_func(pos, a) {
unsigned_flag = true;
}
const char *func_name() const override { return "crc32"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
max_length = 10;
return false;
}
longlong val_int() override;
};
class Item_func_uncompressed_length final : public Item_int_func {
String value;
public:
Item_func_uncompressed_length(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
const char *func_name() const override { return "uncompressed_length"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
max_length = 10;
return false;
}
longlong val_int() override;
};
class Item_func_compress final : public Item_str_func {
String buffer;
public:
Item_func_compress(const POS &pos, Item *a) : Item_str_func(pos, a) {}
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "compress"; }
String *val_str(String *str) override;
};
class Item_func_uncompress final : public Item_str_func {
String buffer;
public:
Item_func_uncompress(const POS &pos, Item *a) : Item_str_func(pos, a) {}
bool resolve_type(THD *thd) override {
if (Item_str_func::resolve_type(thd)) return true;
set_nullable(true);
set_data_type_string(uint32{MAX_BLOB_WIDTH});
return false;
}
const char *func_name() const override { return "uncompress"; }
String *val_str(String *str) override;
};
class Item_func_uuid final : public Item_str_func {
typedef Item_str_func super;
public:
Item_func_uuid() : Item_str_func() {}
explicit Item_func_uuid(const POS &pos) : Item_str_func(pos) {}
bool itemize(Parse_context *pc, Item **res) override;
table_map get_initial_pseudo_tables() const override {
return RAND_TABLE_BIT;
}
bool resolve_type(THD *) override;
const char *func_name() const override { return "uuid"; }
String *val_str(String *) 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_func_current_role final : public Item_func_sysconst {
typedef Item_func_sysconst super;
public:
Item_func_current_role() : super(), value_cache_set(false) {}
explicit Item_func_current_role(const POS &pos)
: super(pos), value_cache_set(false) {}
const char *func_name() const override { return "current_role"; }
void cleanup() override;
String *val_str(String *) override;
bool resolve_type(THD *) override {
set_data_type_string(MAX_BLOB_WIDTH, system_charset_info);
return false;
}
const Name_string fully_qualified_func_name() const override {
return NAME_STRING("current_role()");
}
protected:
void set_current_role(THD *thd);
/** a flag whether @ref value_cache is set or not */
bool value_cache_set;
/**
@brief Cache for the result value
Set by init(). And consumed by val_str().
Needed to avoid re-calculation of the current_roles() in the
course of the query.
*/
String value_cache;
};
class Item_func_roles_graphml final : public Item_func_sysconst {
typedef Item_func_sysconst super;
public:
Item_func_roles_graphml() : super(), value_cache_set(false) {}
explicit Item_func_roles_graphml(const POS &pos)
: super(pos), value_cache_set(false) {}
String *val_str(String *) override;
void cleanup() override;
bool resolve_type(THD *) override {
set_data_type_string(MAX_BLOB_WIDTH, system_charset_info);
return false;
}
const char *func_name() const override { return "roles_graphml"; }
const Name_string fully_qualified_func_name() const override {
return NAME_STRING("roles_graphml()");
}
protected:
bool calculate_graphml(THD *thd);
/**
@brief Cache for the result value
Set by init(). And consumed by val_str().
Needed to avoid re-calculation of the current_roles() in the
course of the query.
*/
String value_cache;
/** Set to true if @ref value_cache is set */
bool value_cache_set;
};
class Item_func_get_dd_column_privileges final : public Item_str_func {
public:
Item_func_get_dd_column_privileges(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
/*
There are 14 kinds of grants, with a max length
per privileges is 11 chars.
So, setting max approximate to 200.
*/
set_data_type_string(14U * 11U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "get_dd_column_privileges"; }
String *val_str(String *) override;
};
class Item_func_get_dd_create_options final : public Item_str_func {
public:
Item_func_get_dd_create_options(const POS &pos, Item *a, Item *b, Item *c)
: Item_str_func(pos, a, b, c) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(false);
null_on_null = false;
return false;
}
const char *func_name() const override { return "get_dd_create_options"; }
String *val_str(String *) override;
};
class Item_func_get_dd_schema_options final : public Item_str_func {
public:
Item_func_get_dd_schema_options(const POS &pos, Item *a)
: Item_str_func(pos, a) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256, system_charset_info);
set_nullable(false);
null_on_null = false;
return false;
}
const char *func_name() const override { return "get_dd_schema_options"; }
String *val_str(String *) override;
};
class Item_func_internal_get_comment_or_error final : public Item_str_func {
public:
Item_func_internal_get_comment_or_error(const POS &pos, PT_item_list *list)
: Item_str_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
/*
maximum expected string length to be less than 2048 characters,
which is same as size of column holding comments in dictionary,
i.e., the mysql.tables.comment DD column.
*/
set_data_type_string(2048U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_get_comment_or_error";
}
String *val_str(String *) override;
};
class Item_func_get_dd_tablespace_private_data final : public Item_str_func {
public:
Item_func_get_dd_tablespace_private_data(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
/* maximum string length of the property value is expected
to be less than 256 characters. */
set_data_type_string(256U);
set_nullable(false);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "get_dd_tablespace_private_data";
}
String *val_str(String *) override;
};
class Item_func_get_dd_index_private_data final : public Item_str_func {
public:
Item_func_get_dd_index_private_data(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
/* maximum string length of the property value is expected
to be less than 256 characters. */
set_data_type_string(256U);
set_nullable(false);
null_on_null = false;
return false;
}
const char *func_name() const override { return "get_dd_index_private_data"; }
String *val_str(String *) override;
};
class Item_func_get_partition_nodegroup final : public Item_str_func {
public:
Item_func_get_partition_nodegroup(const POS &pos, Item *a)
: Item_str_func(pos, a) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_get_partition_nodegroup";
}
String *val_str(String *) override;
};
class Item_func_internal_tablespace_type : public Item_str_func {
public:
Item_func_internal_tablespace_type(const POS &pos, Item *a, Item *b, Item *c,
Item *d)
: Item_str_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "internal_tablespace_type"; }
String *val_str(String *) override;
};
class Item_func_internal_tablespace_logfile_group_name : public Item_str_func {
public:
Item_func_internal_tablespace_logfile_group_name(const POS &pos, Item *a,
Item *b, Item *c, Item *d)
: Item_str_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_tablespace_logfile_group_name";
}
String *val_str(String *) override;
};
class Item_func_internal_tablespace_status : public Item_str_func {
public:
Item_func_internal_tablespace_status(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_str_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_tablespace_status";
}
String *val_str(String *) override;
};
class Item_func_internal_tablespace_row_format : public Item_str_func {
public:
Item_func_internal_tablespace_row_format(const POS &pos, Item *a, Item *b,
Item *c, Item *d)
: Item_str_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_tablespace_row_format";
}
String *val_str(String *) override;
};
class Item_func_internal_tablespace_extra : public Item_str_func {
public:
Item_func_internal_tablespace_extra(const POS &pos, Item *a, Item *b, Item *c,
Item *d)
: Item_str_func(pos, a, b, c, d) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "internal_tablespace_extra"; }
String *val_str(String *) override;
};
class Item_func_convert_cpu_id_mask final : public Item_str_func {
public:
Item_func_convert_cpu_id_mask(const POS &pos, Item *list)
: Item_str_func(pos, list) {}
bool resolve_type(THD *) override {
set_nullable(false);
set_data_type_string(1024U, &my_charset_bin);
return false;
}
const char *func_name() const override { return "convert_cpu_id_mask"; }
String *val_str(String *) override;
};
class Item_func_get_dd_property_key_value final : public Item_str_func {
public:
Item_func_get_dd_property_key_value(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_data_type_string(MAX_BLOB_WIDTH, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "get_dd_property_key_value"; }
String *val_str(String *) override;
};
class Item_func_remove_dd_property_key final : public Item_str_func {
public:
Item_func_remove_dd_property_key(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_data_type_string(MAX_BLOB_WIDTH, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "remove_dd_property_key"; }
String *val_str(String *) override;
};
class Item_func_convert_interval_to_user_interval final : public Item_str_func {
public:
Item_func_convert_interval_to_user_interval(const POS &pos, Item *a, Item *b)
: Item_str_func(pos, a, b) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "convert_interval_to_user_interval";
}
String *val_str(String *) override;
};
class Item_func_internal_get_username final : public Item_str_func {
public:
Item_func_internal_get_username(const POS &pos, PT_item_list *list)
: Item_str_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_data_type_string(uint32(USERNAME_LENGTH + 1), system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "internal_get_username"; }
String *val_str(String *) override;
};
class Item_func_internal_get_hostname final : public Item_str_func {
public:
Item_func_internal_get_hostname(const POS &pos, PT_item_list *list)
: Item_str_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_data_type_string(uint32(HOSTNAME_LENGTH + 1), system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override { return "internal_get_hostname"; }
String *val_str(String *) override;
};
class Item_func_internal_get_enabled_role_json final : public Item_str_func {
public:
explicit Item_func_internal_get_enabled_role_json(const POS &pos)
: Item_str_func(pos) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_data_type_string(uint32(MAX_BLOB_WIDTH), system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_get_enabled_role_json";
}
String *val_str(String *) override;
};
class Item_func_internal_get_mandatory_roles_json final : public Item_str_func {
public:
explicit Item_func_internal_get_mandatory_roles_json(const POS &pos)
: Item_str_func(pos) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
set_data_type_string(uint32(MAX_BLOB_WIDTH), system_charset_info);
set_nullable(true);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_get_mandatory_roles_json";
}
String *val_str(String *) override;
};
class Item_func_internal_get_dd_column_extra final : public Item_str_func {
public:
Item_func_internal_get_dd_column_extra(const POS &pos, PT_item_list *list)
: Item_str_func(pos, list) {}
enum Functype functype() const override { return DD_INTERNAL_FUNC; }
bool resolve_type(THD *) override {
// maximum string length of all options is expected
// to be less than 256 characters.
set_data_type_string(256U, system_charset_info);
set_nullable(false);
null_on_null = false;
return false;
}
const char *func_name() const override {
return "internal_get_dd_column_extra";
}
String *val_str(String *) override;
};
#endif /* ITEM_STRFUNC_INCLUDED */
|