summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authormonty@donna.mysql.fi <>2001-03-25 01:02:26 +0200
committermonty@donna.mysql.fi <>2001-03-25 01:02:26 +0200
commit5487d7a8c01a5ccce90a63a359562cff1bd95b78 (patch)
tree6191242036b4e9061dfd34fc46bf82677415e532 /Docs
parent176147cd31e728185b8b5cb4459d9d9afd1623d5 (diff)
downloadmariadb-git-5487d7a8c01a5ccce90a63a359562cff1bd95b78.tar.gz
Fixed bug in send in mysqltest
Removed usage of @r/result as this made life hard when testing different table handlers. Allow concurrent inserts if no update/binary log. Don't remove key_cache at flush tables. Fixed bug in SELECT DISTINCT SUM()...
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi10
1 files changed, 10 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index 2d391dc99dc..7991f94233a 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -36147,6 +36147,10 @@ The temporary file will be deleted when the thread ends.
The @code{max_binlog_cache_size} can be used to restrict the total size used
to cache a multi-transaction query.
+If you are using the update or binary log then concurrent inserts will
+not work together with @code{CREATE ... INSERT} and @code{INSERT ... SELECT}.
+This is to ensure that you can recreate an exact copy of your tables by
+applying a the log on a backup.
@cindex slow query log
@cindex files, slow query log
@node Slow query log, , Binary log, Log files
@@ -42399,6 +42403,9 @@ not yet 100 % confident in this code.
Fixed that one can't use database names with @code{.}. This fixes a serious
security issue when @code{mysqld} is run as root.
@item
+Don't free the key cache on @code{FLUSH TABLES} as this will cause problems
+with temporary tables.
+@item
Fixed a core-dump bug when using very complex query involving
@code{DISTINCT} and summary functions.
@item
@@ -42416,6 +42423,9 @@ Fixed a bug in @code{CONCAT_WS()} where it returned wrong results.
@item
Changed @code{CREATE ... INSERT} and @code{INSERT ... SELECT} to not
allow concurrent inserts as this could make the binary log hard to repeat.
+(Concurrent inserts are enabled if you are not using the binary or update log).
+@item
+Changed some macros to be able to use fast mutex with glibc 2.2.
@end itemize
@node News-3.23.35, News-3.23.34a, News-3.23.36, News-3.23.x