diff options
author | mikael@dator6.(none) <> | 2007-06-13 16:12:02 +0200 |
---|---|---|
committer | mikael@dator6.(none) <> | 2007-06-13 16:12:02 +0200 |
commit | cb401dde68368d404f34a88f1f08f83040546e31 (patch) | |
tree | 905126fecca6a81364b8222ea7f3520d89d134d9 /sql/item.h | |
parent | 920a8ed5b377bdf4ee2e824cc2cea32dfb75d021 (diff) | |
download | mariadb-git-cb401dde68368d404f34a88f1f08f83040546e31.tar.gz |
manual merge
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item.h b/sql/item.h index 2c380fc2f69..fb2ccb6b2c9 100644 --- a/sql/item.h +++ b/sql/item.h @@ -1627,7 +1627,7 @@ public: uint decimal_precision() const { return (uint)(max_length - test(value < 0)); } bool eq(const Item *, bool binary_cmp) const; - bool check_partition_func_processor(byte *bool_arg) { return FALSE;} + bool check_partition_func_processor(uchar *bool_arg) { return FALSE;} }; @@ -1645,7 +1645,7 @@ public: void print(String *str); Item_num *neg (); uint decimal_precision() const { return max_length; } - bool check_partition_func_processor(byte *bool_arg) { return FALSE;} + bool check_partition_func_processor(uchar *bool_arg) { return FALSE;} }; @@ -1688,7 +1688,7 @@ public: uint decimal_precision() const { return decimal_value.precision(); } bool eq(const Item *, bool binary_cmp) const; void set_decimal_value(my_decimal *value_par); - bool check_partition_func_processor(byte *bool_arg) { return FALSE;} + bool check_partition_func_processor(uchar *bool_arg) { return FALSE;} }; |