mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge
This commit is contained in:
@ -645,3 +645,23 @@ Item *create_func_point(Item *a, Item *b)
|
||||
{
|
||||
return new Item_func_point(a, b);
|
||||
}
|
||||
|
||||
#ifdef HAVE_COMPRESS
|
||||
|
||||
Item *create_func_compress(Item* a)
|
||||
{
|
||||
return new Item_func_compress(a);
|
||||
}
|
||||
|
||||
Item *create_func_uncompress(Item* a)
|
||||
{
|
||||
return new Item_func_uncompress(a);
|
||||
}
|
||||
|
||||
Item *create_func_uncompressed_length(Item* a)
|
||||
{
|
||||
return new Item_func_uncompressed_length(a);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user