Commit ae2e2d87 authored by Łukasz Nowak's avatar Łukasz Nowak

- disallow fallback on engines (thanks to Vincent and Jerome)

As ERP5 by default requires InnoDB storage. MySQL by default fallbacks
to using different engine, like MyISAM, which only generates problems,
when tables requested for InnoDB are silently created with MyISAM.

Loud fail is really required in such case.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33796 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d216762e
......@@ -7,6 +7,7 @@ socket = ${configuration:mysql_sock}
# The MySQL server
[mysqld]
sql-mode="NO_ENGINE_SUBSTITUTION"
port = ${configuration:mysql_port}
socket = ${configuration:mysql_sock}
datadir = ${configuration:mysql_datadir}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment