summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorInaam Rana <inaam.rana@oracle.com>2010-08-13 15:07:22 -0400
committerInaam Rana <inaam.rana@oracle.com>2010-08-13 15:07:22 -0400
commit1a649603f81c376fd8860fc636d2f4f185a5c945 (patch)
tree261706c32c81b073baec1a05230e84b30d0bcff4 /storage
parent50af6a8aea0d74789bd6d210e874f34a932c7268 (diff)
downloadmariadb-git-1a649603f81c376fd8860fc636d2f4f185a5c945.tar.gz
Change default for innodb_strict_mode to FALSE.
Note that this was originally pushed by Calvin but the was later reverted by mistake. bug#54702
Diffstat (limited to 'storage')
-rw-r--r--storage/innobase/handler/ha_innodb.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc
index ab9df9a0272..e78f167beb6 100644
--- a/storage/innobase/handler/ha_innodb.cc
+++ b/storage/innobase/handler/ha_innodb.cc
@@ -425,7 +425,7 @@ static MYSQL_THDVAR_BOOL(table_locks, PLUGIN_VAR_OPCMDARG,
static MYSQL_THDVAR_BOOL(strict_mode, PLUGIN_VAR_OPCMDARG,
"Use strict mode when evaluating create options.",
- NULL, NULL, TRUE);
+ NULL, NULL, FALSE);
static MYSQL_THDVAR_ULONG(lock_wait_timeout, PLUGIN_VAR_RQCMDARG,
"Timeout in seconds an InnoDB transaction may wait for a lock before being rolled back. Values above 100000000 disable the timeout.",