diff options
author | istruewing@stella.local <> | 2008-03-26 10:27:00 +0100 |
---|---|---|
committer | istruewing@stella.local <> | 2008-03-26 10:27:00 +0100 |
commit | 44fbe74e1e7c6055f10f5eb7ab6f467e0c4aa966 (patch) | |
tree | 69df040c98a9edd26de9be04066dff14eb50319e /sql/item_func.h | |
parent | bc683c6450a40a148e3cb321de26c35fca5749b6 (diff) | |
parent | 97531cadc9fb1df270b435cc15a19b7f9b0195a8 (diff) | |
download | mariadb-git-44fbe74e1e7c6055f10f5eb7ab6f467e0c4aa966.tar.gz |
Merge stella.local:/home2/mydev/mysql-5.1-amain
into stella.local:/home2/mydev/mysql-5.1-axmrg
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 b6ee0a3de5e..02631d7643d 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -309,7 +309,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;} }; @@ -395,6 +394,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;} }; @@ -429,6 +429,7 @@ public: double real_op(); my_decimal *decimal_op(my_decimal *); void result_precision(); + bool check_partition_func_processor(uchar *int_arg) {return FALSE;} }; @@ -474,6 +475,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;} }; |