summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-11-08 14:17:56 +0200
committerunknown <monty@hundin.mysql.fi>2001-11-08 14:17:56 +0200
commit897e7453d6c669f7460a242a81b874bd0302007b (patch)
tree0a05f378a5dece2d6005b252698e932baf9f47bd /Docs
parent356003a8c9d939dc5c95f50539d3916e404d25a9 (diff)
downloadmariadb-git-897e7453d6c669f7460a242a81b874bd0302007b.tar.gz
Don't use IGNORE by default in INSERT ... SELECT
Docs/manual.texi: Changelog mysql-test/r/insert_select.result: Add testcase for INSERT IGNORE mysql-test/t/insert_select.test: Add testcase for INSERT IGNORE
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi6
1 files changed, 6 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index a4e40f865d8..35a23422d27 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -9686,6 +9686,10 @@ version 4.0;
@itemize @bullet
@item
+@code{INSERT INTO ... SELECT} had in 3.23 always @code{IGNORE} enabled.
+In 4.0.1 MySQL will stop (and possible rollback) in case of an error if you
+don't specify @code{IGNORE}.
+@item
@file{safe_mysqld} is renamed to @file{mysqld_safe}.
@item
The old C API functions @code{mysql_drop_db}, @code{mysql_create_db} and
@@ -48867,6 +48871,8 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@item
+Changed @code{INSERT INTO .. SELECT} to by default stop on errors.
+@item
Ignore @code{DATA DIRECTORY} and @code{INDEX DIRECTORY} directives on windows.
@item
Added boolean fulltext search code. It should be considered early alpha.