Commit 92d00094 authored by unknown's avatar unknown

Updating changelog


Docs/manual.texi:
  Changelog
sql/gen_lex_hash.cc:
  Better hash values
parent 20a5872e
...@@ -28039,6 +28039,10 @@ slower on Linux. Note that you still can use a dynamic linked ...@@ -28039,6 +28039,10 @@ slower on Linux. Note that you still can use a dynamic linked
@strong{MySQL} library. It is only the server that is critical for @strong{MySQL} library. It is only the server that is critical for
performance. performance.
@item
If you strip your @code{mysqld} binary with @code{strip libexec/mysqld},
the resulting binary can be up to 4 % faster.
@item @item
If you connect using TCP/IP rather than Unix sockets, the result is 7.5% If you connect using TCP/IP rather than Unix sockets, the result is 7.5%
slower on the same computer. (If you are connection to @code{localhost}, slower on the same computer. (If you are connection to @code{localhost},
...@@ -42403,6 +42407,9 @@ not yet 100 % confident in this code. ...@@ -42403,6 +42407,9 @@ not yet 100 % confident in this code.
Fixed that one can't use database names with @code{.}. This fixes a serious Fixed that one can't use database names with @code{.}. This fixes a serious
security issue when @code{mysqld} is run as root. security issue when @code{mysqld} is run as root.
@item @item
Fixed bug when thread creation failed (could happen when doing a LOT
of connections in a short time).
@item
Don't free the key cache on @code{FLUSH TABLES} as this will cause problems Don't free the key cache on @code{FLUSH TABLES} as this will cause problems
with temporary tables. with temporary tables.
@item @item
...@@ -472,7 +472,7 @@ int main(int argc,char **argv) ...@@ -472,7 +472,7 @@ int main(int argc,char **argv)
int error; int error;
MY_INIT(argv[0]); MY_INIT(argv[0]);
start_value=6871391L; best_t1=1779313L; best_t2=5719807L; best_type=3; /* mode=4987 add=5 type: 0 */ start_value=4997167L; best_t1=4533271L; best_t2=7512314L; best_type=4;
if (get_options(argc,(char **) argv)) if (get_options(argc,(char **) argv))
exit(1); exit(1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment