summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-01-22 08:19:00 -0500
committerTim Graham <timograham@gmail.com>2016-01-22 08:22:43 -0500
commit647ce33e86807bcc75977a34871e1ee08230d9a5 (patch)
tree5d540e5346c2ed0b946bdc3bf83c12dc8d7910b2 /docs
parentb5c4972283452aea914400fbec50191f68886484 (diff)
[1.9.x] Fixed #26121 -- Updated MySQL storage engine example.
default_storage_engine was introduced in MySQL 5.5.3. storage_engine was removed in MySQL 5.7.5. Backport of 79d0a4fdb0d13ba6a843dace2b90ab44e856bd85 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/databases.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 17085053c4..94d97b1487 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -461,7 +461,7 @@ storage engine, you have a couple of options.
creating your tables::
'OPTIONS': {
- 'init_command': 'SET storage_engine=INNODB',
+ 'init_command': 'SET default_storage_engine=INNODB',
}
This sets the default storage engine upon connecting to the database.