xxxxxxxxxx
-- run sql query below
SET GLOBAL innodb_strict_mode='OFF';
SHOW VARIABLES WHERE variable_name = 'innodb_strict_mode';
#1118 - Row size too large (> 8126)
xxxxxxxxxx
SHOW VARIABLES WHERE variable_name = 'innodb_strict_mode';
// if it's ON and cause error #1118 - Row size too large (> 8126)
SET GLOBAL innodb_strict_mode='OFF';
xxxxxxxxxx
-- shows the acutal value of the variable
SHOW VARIABLES WHERE variable_name = 'innodb_strict_mode';
-- change the value (ON/OFF)
SET GLOBAL innodb_strict_mode=ON;