diff options
author | monty@mashka.mysql.fi <> | 2003-02-07 15:47:24 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-07 15:47:24 +0200 |
commit | 25de9c19b2b76ff56bfa69b99033b14262f974ff (patch) | |
tree | 0661c54a51aa711947173e8a8e27e2e46cfa971c /sql/item_cmpfunc.h | |
parent | 023d6dd39b9068ab8096c5ec60ab82bd10dbcee2 (diff) | |
download | mariadb-git-25de9c19b2b76ff56bfa69b99033b14262f974ff.tar.gz |
After merge fixes & remove compiler warnings
Added lengths for all MYSQL_FIELD string parameters
Changed field length to 2 byte in .frm files
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 6e47bbcc3d1..97e69b5dfe6 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -304,7 +304,6 @@ public: args[0]->top_level_item(); return Item_func::fix_fields(thd, tlist, ref); } - void split_sum_func(List<Item> &fields); void fix_length_and_dec(); const char *func_name() const { return "if"; } }; @@ -354,7 +353,7 @@ public: const char *func_name() const { return "case"; } void print(String *str); bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref); - void split_sum_func(List<Item> &fields); + void split_sum_func(Item **ref_pointer_array, List<Item> &fields); Item *find_item(String *str); void set_outer_resolving(); }; |