summaryrefslogtreecommitdiff
path: root/sql/item_timefunc.h
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-03-06 18:36:31 +0200
committerunknown <monty@hundin.mysql.fi>2002-03-06 18:36:31 +0200
commitd6998363afc004fd92248af521ed40fa52027954 (patch)
treeb15e545bf81d86ec528ceb737592fa34e6024c18 /sql/item_timefunc.h
parent39cdb786fd7db97399fff788df7547f5be73b132 (diff)
downloadmariadb-git-d6998363afc004fd92248af521ed40fa52027954.tar.gz
Fixed bug in DATE_FORMAT when used with GROUP BY
Build-tools/Do-compile: Fixed typo Docs/manual.texi: Changelog mysql-test/r/type_date.result: Added test of bug in DATE_FORMAT mysql-test/t/type_date.test: Added test of bug in DATE_FORMAT scripts/mysqlhotcopy.sh: Fix for RAID files sql/table.cc: Fixed typo in last patch
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 1343cdad390..6913d4c6809 100644
--- a/sql/item_timefunc.h
+++ b/sql/item_timefunc.h
@@ -297,6 +297,7 @@ class Item_func_date_format :public Item_str_func
{
int fixed_length;
const bool date_or_time;
+ String value;
public:
Item_func_date_format(Item *a,Item *b,bool date_or_time_arg)
:Item_str_func(a,b),date_or_time(date_or_time_arg) {}