1118 - Row size too large ( 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. ln current row format, BLOB prefix of 768 bytes is stored inline.
InnoDB引擎建表时,如果最大行大小超过了数据库参数innodb_page_size
的一半(默认16K,一半就是8126字节)就会提示该错误。
关闭InnoDB严格模式
set global innodb_strict_mode = 0;
flush privileges;