使用mysql导入数据时出现了:
ERROR 1118 (42000) at line XX: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. You have to change some columns to TEXT or BLOBs
错误~~
百度了一堆解决方案,发现契合的比较少,最后在某个大佬的博客里面找到线索,推敲出了答案
解决方法:
在sql导入语句中的 ENGINE=InnoDB 改成 ENGINE=MyISAM
重新执行导入语句就可以了