summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-07-01 07:25:24 -0400
committerTim Graham <timograham@gmail.com>2012-07-01 07:26:53 -0400
commit8bea1a7e4eacfe311651eafb506ab1f4e7691feb (patch)
treee509572c8b602573a56377582da0f50b6984b277
parent32bd77d392e331e823792abcd9d31045f681776d (diff)
[1.4.X] Fixed #16882 - Clarified why one should not use 'init_command' after initial database creation.
Backport of 9974069620 from master
-rw-r--r--docs/ref/databases.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 5440f488e2..5580d65816 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -342,7 +342,9 @@ storage engine, you have a couple of options.
}
This sets the default storage engine upon connecting to the database.
- After your tables have been created, you should remove this option.
+ After your tables have been created, you should remove this option as it
+ adds a query that is only needed during table creation to each database
+ connection.
* Another method for changing the storage engine is described in
AlterModelOnSyncDB_.