summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2003-11-21 00:11:50 +0200
committerunknown <monty@mysql.com>2003-11-21 00:11:50 +0200
commit7c6ed734438fe7f473c045f89ae8d2b1dce8c4b6 (patch)
tree4cd9739fe1fd00afa4e9117b8d45599375b500cb /sql/item.h
parentcd878c2c8a4a639b2a7147ecf00ce791e15faa42 (diff)
downloadmariadb-git-7c6ed734438fe7f473c045f89ae8d2b1dce8c4b6.tar.gz
Revert patch for bigint handling in double context as it broke normal bigint handling
The right way to fix this is to change the Field::store(longlong) method to be Field::store(longlong, bool unsigned_flag), but this is better to do in 4.1 than in 4.0 mysql-test/r/bigint.result: New tests to show how the last bigint patch broke MySQL mysql-test/t/bigint.test: New tests to show how the last bigint patch broke MySQL sql/item.cc: Revert patch for bigint handling in double context as it broke normal bigint handling sql/item.h: Revert patch for bigint handling in double context as it broke normal bigint handling
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h
index d23a061eedb..e8a6313b6a0 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -232,7 +232,6 @@ 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;