diff options
author | unknown <monty@mashka.mysql.fi> | 2002-07-29 09:35:25 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-07-29 09:35:25 +0300 |
commit | 01152fb14637d1fb324bac0de496164a6e1ba46f (patch) | |
tree | e3ed5bd5c3e00eb2edf594fe95850d3dd0bc1ad4 /Docs | |
parent | 714e9c881e5af8bbb54c336d0327bae8e4559019 (diff) | |
download | mariadb-git-01152fb14637d1fb324bac0de496164a6e1ba46f.tar.gz |
Merge of ha_innobase.cc from 4.0; This fixes that MySQL doesn't allocate too big buffers when sorting innobase rows
Changed name of variables
NO_FOREIGN_KEY_CHECKS -> FOREIGN_KEY_CHECKS
RELAXED_UNIQUE_CHECKS -> UNIQUE_CHECKS
to avoid confusion with 'not...' variables.
Write name of adminstrator command to slow log.
Added mysqldumpslow to RPM
Docs/manual.texi:
Changelog
sql/gen_lex_hash.cc:
Updated values
sql/ha_innobase.cc:
Remove return value of sprintf
Merged back optimizations done in 4.0
Fixed ref_length; Caused MySQL to use big buffers when using InnoDB
sql/lex.h:
Changed name of variables
NO_FOREIGN_KEY_CHECKS -> FOREIGN_KEY_CHECKS
RELAXED_UNIQUE_CHECKS -> UNIQUE_CHECKS
sql/log.cc:
Write name of adminstrator command to slow log
sql/sql_yacc.yy:
Changed name of variables
NO_FOREIGN_KEY_CHECKS -> FOREIGN_KEY_CHECKS
RELAXED_UNIQUE_CHECKS -> UNIQUE_CHECKS
support-files/mysql.spec.sh:
Added mysqldumpslow to RPM
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 19ce75e5d7d..f6398627e34 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -46928,6 +46928,8 @@ not yet 100% confident in this code. @appendixsubsec Changes in release 3.23.52 @itemize @bullet @item +Added name of 'administrator command' logs. +@item Fixed bug with creating an auto-increment value on second part of a @code{UNIQUE()} key where first part could contain NULL values. @item |