summaryrefslogtreecommitdiff
path: root/sql/item_timefunc.h
diff options
context:
space:
mode:
authorunknown <ramil@mysql.com>2006-04-11 16:13:57 +0500
committerunknown <ramil@mysql.com>2006-04-11 16:13:57 +0500
commit1ef739636a275f1c0e7bb56f891160b77d4cf43b (patch)
treee8e9706751cb77c52dd4b07cc0a78de3393e3863 /sql/item_timefunc.h
parent3b1a0c8738f3772a4898548bfb0e90165eb9a913 (diff)
downloadmariadb-git-1ef739636a275f1c0e7bb56f891160b77d4cf43b.tar.gz
Fix for bug #14360: Date Between Interval Broken.
mysql-test/r/innodb.result: Fix for bug #14360: Date Between Interval Broken. - test case. mysql-test/t/innodb.test: Fix for bug #14360: Date Between Interval Broken. - test case. sql/item_timefunc.cc: Fix for bug #14360: Date Between Interval Broken. - Item_date_add_interval::eq() introduced. sql/item_timefunc.h: Fix for bug #14360: Date Between Interval Broken. - Item_date_add_interval::eq() introduced.
Diffstat (limited to 'sql/item_timefunc.h')
-rw-r--r--sql/item_timefunc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_timefunc.h b/sql/item_timefunc.h
index 71f595184ec..761faf85e63 100644
--- a/sql/item_timefunc.h
+++ b/sql/item_timefunc.h
@@ -656,6 +656,7 @@ public:
double val_real() { DBUG_ASSERT(fixed == 1); return (double) val_int(); }
longlong val_int();
bool get_date(TIME *res, uint fuzzy_date);
+ bool eq(const Item *item, bool binary_cmp) const;
void print(String *str);
};