去评论
dz插件网

#1118 - Row size too large. The maximum row size插件创建表报错解决

admin
2020/11/27 13:41:18
#1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs插件创建表报错解决办法:

一般常见插件的大字段建表语句超出65535长度限制:
varchar(8000) NOT NULL,


改为:
varchar(6206) NOT NULL,


即可解决。