summaryrefslogtreecommitdiff
path: root/sql/item.cc
diff options
context:
space:
mode:
authormonty@mysql.com <>2003-11-21 01:53:01 +0200
committermonty@mysql.com <>2003-11-21 01:53:01 +0200
commit8aeb63dd3bc0a7c7ec1cda701f721591929c41e3 (patch)
treed2ee92d6c747460f67b4e5c5612f5771fbc5e4c0 /sql/item.cc
parent32a62d506916c2f1ee34cb4494a10b66d1b4be2a (diff)
downloadmariadb-git-8aeb63dd3bc0a7c7ec1cda701f721591929c41e3.tar.gz
Update VC++ files
Portability fixes After merge fixes
Diffstat (limited to 'sql/item.cc')
-rw-r--r--sql/item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.cc b/sql/item.cc
index 4cd52c54097..9684fd3e518 100644
--- a/sql/item.cc
+++ b/sql/item.cc
@@ -1196,7 +1196,7 @@ int Item_uint::save_in_field(Field *field, bool no_conversions)
TODO: To be fixed when wen have a
field->store(longlong, unsigned_flag) method
*/
- Item_int::save_in_field(field, no_conversions);
+ return Item_int::save_in_field(field, no_conversions);
}