Merge branch '10.5' into 10.6

This commit is contained in:
Oleksandr Byelkin 2023-01-31 09:31:42 +01:00
commit c3a5cf2b5b
133 changed files with 4073 additions and 707 deletions

View file

@ -1209,6 +1209,18 @@ public:
}
};
class Item_func_hash_mariadb_100403: public Item_func_hash
{
public:
Item_func_hash_mariadb_100403(THD *thd, List<Item> &item)
:Item_func_hash(thd, item)
{}
longlong val_int();
Item *get_copy(THD *thd)
{ return get_item_copy<Item_func_hash_mariadb_100403>(thd, this); }
const char *func_name() const { return "<hash_mariadb_100403>"; }
};
class Item_longlong_func: public Item_int_func
{
public: