diff options
author | unknown <bell@sanja.is.com.ua> | 2004-06-19 13:26:39 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-06-19 13:26:39 +0300 |
commit | 49aebb9891f075e0a5c53bdf76aba72fc6019e52 (patch) | |
tree | de0668df4035239b5c431106c9ad56c9a3a43d47 /sql/item_cmpfunc.h | |
parent | 94f36589c72c7c916802e2c8da9cb2f3ecc72b4a (diff) | |
download | mariadb-git-49aebb9891f075e0a5c53bdf76aba72fc6019e52.tar.gz |
cleanup for Item_func_regex (Bug #4199)
mysql-test/r/func_regexp.result:
test of cleaning regex in PS
mysql-test/t/func_regexp.test:
test of cleaning regex in PS
sql/item_cmpfunc.cc:
cleanup for Item_func_regex
sql/item_cmpfunc.h:
cleanup for Item_func_regex
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index ef80c060c03..b9214f59867 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -869,7 +869,7 @@ class Item_func_regex :public Item_bool_func public: Item_func_regex(Item *a,Item *b) :Item_bool_func(a,b), regex_compiled(0),regex_is_const(0) {} - ~Item_func_regex(); + void cleanup(); longlong val_int(); bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref); const char *func_name() const { return "regexp"; } |