diff options
author | unknown <monty@hundin.mysql.fi> | 2001-11-26 02:16:38 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-11-26 02:16:38 +0200 |
commit | 4615e50093d635f07f2940bb9fbe7e1c327b8ebb (patch) | |
tree | 1f8e0f608f035ad5906f6ea2dbbb3006ea2703bd /Docs | |
parent | 7ef7d93726929ec678a8b07bed1be7bb56ad4b10 (diff) | |
download | mariadb-git-4615e50093d635f07f2940bb9fbe7e1c327b8ebb.tar.gz |
Fix race condition in ANALYZE TABLE.
Fixed bug where one got an empty set instead of a DEADLOCK error when using BDB tables.
Docs/manual.texi:
Cleanup
configure.in:
Version number change
mysql-test/t/backup.test:
drop used tables
mysql-test/t/bdb-crash.test:
cleanup
mysys/thr_lock.c:
cleanup
sql/mysqld.cc:
safety fix
sql/records.cc:
Fixed bug where one got an empty set instead of a DEADLOCK error when using
BDB tables.
sql/sql_table.cc:
Fix race condition in ANALYZE TABLE.
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 07959fd2602..9eff296b7e6 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -46785,6 +46785,7 @@ users use this code as the rest of the code and because of this we are not yet 100% confident in this code. @menu +* News-3.23.46:: * News-3.23.45:: Changes in release 3.23.45 * News-3.23.44:: Changes in release 3.23.44 * News-3.23.43:: Changes in release 3.23.43 @@ -46834,7 +46835,20 @@ not yet 100% confident in this code. * News-3.23.0:: Changes in release 3.23.0 @end menu -@node News-3.23.45, News-3.23.44, News-3.23.x, News-3.23.x +@node News-3.23.46, News-3.23.45, News-3.23.x, News-3.23.x +@appendixsubsec Changes in release 3.23.46 +@itemize @bullet +@item +Fixed bug where one got an empty set instead of a DEADLOCK error when using +BDB tables. +@item +One can now kill @code{ANALYZE},@code{REPAIR} and @code{OPTIMIZE TABLE} when +the thread is waiting to get a lock on the table. +@item +Fixed race condition in @code{ANALYZE TABLE}. +@end itemize + +@node News-3.23.45, News-3.23.44, News-3.23.46, News-3.23.x @appendixsubsec Changes in release 3.23.45 @itemize @bullet @item |