Commit 8bea1a7e authored by Tim Graham's avatar Tim Graham
Browse files

[1.4.X] Fixed #16882 - Clarified why one should not use 'init_command' after...

[1.4.X] Fixed #16882 - Clarified why one should not use 'init_command' after initial database creation.

Backport of 99740696 from master
parent 32bd77d3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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_.