summaryrefslogtreecommitdiff
path: root/sql/field.cc
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/deer.(none)>2006-11-08 20:41:47 +0400
committerunknown <holyfoot/hf@mysql.com/deer.(none)>2006-11-08 20:41:47 +0400
commit1df205946285c03f05bc73ef6af91ab86d1a939c (patch)
tree71eaa4864a0322b89b547ff3b7cb876bde02efde /sql/field.cc
parent90d14d50a99508a4ac459f510eb717d596976da2 (diff)
downloadmariadb-git-1df205946285c03f05bc73ef6af91ab86d1a939c.tar.gz
merging
sql/field.cc: here we can get negative values
Diffstat (limited to 'sql/field.cc')
-rw-r--r--sql/field.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/field.cc b/sql/field.cc
index 0af690608cc..802f3725f25 100644
--- a/sql/field.cc
+++ b/sql/field.cc
@@ -4926,7 +4926,7 @@ int Field_time::store_time(TIME *ltime, timestamp_type type)
(ltime->minute * 100 + ltime->second);
if (ltime->neg)
tmp= -tmp;
- return Field_time::store((longlong) tmp, TRUE);
+ return Field_time::store((longlong) tmp, FALSE);
}