1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00
This commit is contained in:
vva@eagle.mysql.r18.ru
2003-04-10 10:25:21 -04:00
38 changed files with 355 additions and 24 deletions

View File

@ -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