summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index ccc71d7f5fe..b02d6ccaa8c 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -898,7 +898,10 @@ public:
const char *func_name() const { return "match_nl"; }
double val();
int ft_handler_init(const byte *query, uint querylen, bool presort)
- { ft_handler=table->file->ft_init_ext(FT_NL,key, query, querylen, presort); }
+ {
+ ft_handler=table->file->ft_init_ext(FT_NL,key, query, querylen, presort);
+ return 0;
+ }
};
class Item_func_match_bool :public Item_func_match
@@ -908,6 +911,9 @@ public:
const char *func_name() const { return "match_bool"; }
double val();
int ft_handler_init(const byte *query, uint querylen, bool presort)
- { ft_handler=table->file->ft_init_ext(FT_BOOL,key, query, querylen, presort); }
+ {
+ ft_handler=table->file->ft_init_ext(FT_BOOL,key, query, querylen, presort);
+ return 0;
+ }
};