diff options
author | unknown <monty@tik.mysql.fi> | 2002-03-21 23:06:48 +0200 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2002-03-21 23:06:48 +0200 |
commit | c0a5e4707168e03e89191261b7a5ec95ffbc99d7 (patch) | |
tree | 63e54a056bcd09390054202f9c5fad2985ab8f2d /Docs | |
parent | b70f53b28940008233995d885584c2e0984e3bf4 (diff) | |
download | mariadb-git-c0a5e4707168e03e89191261b7a5ec95ffbc99d7.tar.gz |
Quote names to SHOW CREATE for mysqldump
Fix thread-related bug when doing DROP TABLE
Fix bug in RENAME TABLE on windows
Docs/manual.texi:
Changelog
client/mysqldump.c:
Quote names to SHOW CREATE
mysql-test/t/range.test:
Test case for range bug
sql/lock.cc:
Fix thread-related bug when doing DROP TABLE
sql/sql_base.cc:
Fix thread-related bug when doing DROP TABLE
sql/sql_rename.cc:
Fix bug in RENAME TABLE on windows
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 4955de63ea8..9ec9af45262 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -46897,6 +46897,12 @@ not yet 100% confident in this code. @appendixsubsec Changes in release 3.23.50 @itemize @bullet @item +Fixed bug in @code{RENAME TABLE} when used with +@code{lower_case_table_names=1} (default on Windows). +@item +Fixed unlikely core-dump bug when using @code{DROP TABLE} on a table +that was in use by a thread that also used queries on only temporary tables. +@item Fixed problem with @code{SHOW CREATE TABLE} and @code{PRIMARY KEY} when using 32 indexes. @item |