From 009c697312d85143157095f65f738ddd6c257ec4 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 22 Jan 2016 08:19:00 -0500 Subject: [PATCH] [1.8.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 --- docs/ref/databases.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index dd3ea36bd4..ed15390e45 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -448,7 +448,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.