diff options
author | unknown <monty@hundin.mysql.fi> | 2002-03-06 18:36:31 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-03-06 18:36:31 +0200 |
commit | d6998363afc004fd92248af521ed40fa52027954 (patch) | |
tree | b15e545bf81d86ec528ceb737592fa34e6024c18 /sql/table.cc | |
parent | 39cdb786fd7db97399fff788df7547f5be73b132 (diff) | |
download | mariadb-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/table.cc')
-rw-r--r-- | sql/table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index 7510e6bcce8..247e1dda196 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -601,7 +601,7 @@ int closefrm(register TABLE *table) } delete table->file; table->file=0; /* For easyer errorchecking */ - hash_free(&outparam->name_hash); + hash_free(&table->name_hash); free_root(&table->mem_root,MYF(0)); DBUG_RETURN(error); } |