diff options
| author | Tim Graham <timograham@gmail.com> | 2012-07-01 07:25:24 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2012-07-01 07:25:24 -0400 |
| commit | 9974069620b0f0e6ac2f1e9bd64819ae0a0e623b (patch) | |
| tree | aeee4ff32b0db0a095ff4d8704f37f6c2f421392 /docs/ref/databases.txt | |
| parent | c68f4c514c7b1102772b6ea11e9e59c7c87f7fae (diff) | |
Fixed #16882 - Clarified why one should not use 'init_command' after initial database creation.
Diffstat (limited to 'docs/ref/databases.txt')
| -rw-r--r-- | docs/ref/databases.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index ff7a349eb5..1f4d09f6cb 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -335,7 +335,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_. |
