diff options
author | antony@pcg5ppc.xiphis.org <> | 2008-03-07 13:46:29 -0800 |
---|---|---|
committer | antony@pcg5ppc.xiphis.org <> | 2008-03-07 13:46:29 -0800 |
commit | 820068f1b71454284e4e442cc6451ab6c2ee3999 (patch) | |
tree | 5eca346659ddf3033d7dcf7b2af9b45a8f391a92 /sql/item_func.h | |
parent | d4025ce1a60322635bf5f7adb765f4612563ee3a (diff) | |
parent | 38f91fc2778cfc3ecb14c8b0de2b13cf164411c8 (diff) | |
download | mariadb-git-820068f1b71454284e4e442cc6451ab6c2ee3999.tar.gz |
Merge pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/mysql-5.1-engines
into pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/merge.20080307/mysql-5.1
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index f8eb7ff6200..4f86337e390 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -301,7 +301,6 @@ class Item_num_op :public Item_func_numhybrid void find_num_type(); String *str_op(String *str) { DBUG_ASSERT(0); return 0; } - bool check_partition_func_processor(uchar *int_arg) {return FALSE;} }; @@ -387,6 +386,7 @@ class Item_func_additive_op :public Item_num_op public: Item_func_additive_op(Item *a,Item *b) :Item_num_op(a,b) {} void result_precision(); + bool check_partition_func_processor(uchar *int_arg) {return FALSE;} }; @@ -421,6 +421,7 @@ public: double real_op(); my_decimal *decimal_op(my_decimal *); void result_precision(); + bool check_partition_func_processor(uchar *int_arg) {return FALSE;} }; @@ -466,6 +467,7 @@ public: const char *func_name() const { return "%"; } void result_precision(); void fix_length_and_dec(); + bool check_partition_func_processor(uchar *int_arg) {return FALSE;} }; |