diff options
author | unknown <monty@mashka.mysql.fi> | 2002-09-21 21:36:23 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-09-21 21:36:23 +0300 |
commit | b804e278c876314de8ff5ae10fc54ea68ca06070 (patch) | |
tree | 082d99e224788fa31d6922be2343af244c44aed6 /Docs/manual.texi | |
parent | e4860747ebc5fddac571526d7c9c5e3f7452ab85 (diff) | |
download | mariadb-git-b804e278c876314de8ff5ae10fc54ea68ca06070.tar.gz |
Change name -> alias in TABLE_LIST.
Added missing mutex-lock around critical section in GRANT handling.
Docs/manual.texi:
ChangeLog
sql/lock.cc:
Change name -> alias in TABLE_LIST.
sql/slave.cc:
Change name -> alias in TABLE_LIST.
sql/sql_acl.cc:
Added missing mutex-lock around critical section in GRANT handling.
Changed name -> alias
sql/sql_base.cc:
Change name -> alias in TABLE_LIST.
sql/sql_insert.cc:
Change name -> alias in TABLE_LIST.
sql/sql_parse.cc:
Change name -> alias in TABLE_LIST.
sql/sql_show.cc:
Change name -> alias in TABLE_LIST.
sql/sql_table.cc:
Change name -> alias in TABLE_LIST.
sql/sql_udf.cc:
Change name -> alias in TABLE_LIST.
sql/table.h:
Change name -> alias in TABLE_LIST.
tests/grant.pl:
Fixed grant test
Diffstat (limited to 'Docs/manual.texi')
-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 5330ae82dc2..ac2d569ffc6 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -46931,10 +46931,16 @@ not yet 100% confident in this code. @item Fixed core dump bug when using the @code{BINARY} cast on a @code{NULL} value. @item +Fixed race condition when someone did a @code{GRANT} at the same time a new +user logged in or did a @code{USE DATABASE}. +@item Fixed bug in @code{ALTER TABLE} and @code{RENAME TABLE} when running with @code{-O lower_case_table_names=1} (typically on windows) when giving the table name in uppercase. @item +Fixed that @code{-O lower_case_table_names=1} also converts database +names to lower case. +@item Fixed unlikely core dump with @code{SELECT ... ORDER BY ... LIMIT}. @item Changed @code{AND/OR} to report that they can return NULL. This fixes a |