diff options
author | unknown <serg@serg.mylan> | 2003-11-16 17:37:15 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-11-16 17:37:15 +0100 |
commit | 069ec78c803516363e91c550624032d1b622dec9 (patch) | |
tree | e02479a2eb71487fb7bacd2034a094a3da3ee61b /sql/item.h | |
parent | a35ba0ea0ce87b54c65d451a50d7821ac0f92d4a (diff) | |
download | mariadb-git-069ec78c803516363e91c550624032d1b622dec9.tar.gz |
Item_uint::save_in_field() added to take into account bigint->decimal case
BitKeeper/etc/ignore:
Added sql/udf_example.so to the ignore list
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index 25650e85434..d23a061eedb 100644 --- a/sql/item.h +++ b/sql/item.h @@ -232,13 +232,14 @@ public: String *val_str(String*); void make_field(Send_field *field); Item *new_item() { return new Item_uint(name,max_length); } + bool save_in_field(Field *field, bool no_conversions); bool fix_fields(THD *thd,struct st_table_list *table_list) { unsigned_flag= 1; return 0; } void print(String *str); - unsigned int size_of() { return sizeof(*this);} + unsigned int size_of() { return sizeof(*this);} }; |