Opened 9 years ago

Closed 9 years ago

Last modified 9 years ago

#26121 closed Bug (fixed)

MySQL 5.7.10 deprecated storage_engine variable

Reported by: nooperpudd Owned by: Tim Graham
Component: Documentation Version: 1.9
Severity: Normal Keywords: mysql, storage_engine
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

storage_engine variable was depreccated in MySQL 5.7.5 version.

But in the document still have the storage_engine variable.

https://docs.djangoproject.com/en/1.9/ref/databases/#creating-your-tables

MySQL reference link:
http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_default_storage_engine

Change History (4)

comment:1 by Tim Graham, 9 years ago

Owner: changed from nobody to Tim Graham
Status: newassigned
Triage Stage: UnreviewedAccepted

The replacement, default_storage_engine, was introduced in MySQL 5.5.3, so this should be fine to backport as far as Django 1.8 which has 5.5.x as the minimum supported version.

comment:2 by Tim Graham <timograham@…>, 9 years ago

Resolution: fixed
Status: assignedclosed

In 79d0a4fd:

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.

comment:3 by Tim Graham <timograham@…>, 9 years ago

In 647ce33:

[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

comment:4 by Tim Graham <timograham@…>, 9 years ago

In 009c697:

[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

Note: See TracTickets for help on using tickets.
Back to Top