mysql版本号 5.5
表类型: innodb, row_format=compact (这是默认的行格式) 插入超过10个blob,
blob的数据量非常大(>768字节), 插入失败:报 Row size too large (> 8126). Changing some
columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may
help. In current row format, BLOB prefix of 768 bytes is stored inline.
备注: 1)
实际測试測试我用的每一个字段长度都是100K+ 2) 对于mysql5.5,
尽管支持Barracuda。可是默认使用的还是老的格式:Antelope
除非在mysql的配置里面my.cnf改动: innodb_file_per_table = 1
innodb_file_format = Barracuda
或者set global 命令动态的改动: SET GLOBAL
innodb_file_format=barracuda; SET GLOBAL
innodb_file_per_table=1;
注意:
1) 改动后的innodb_file_format格式, 仅仅影响兴许创建的表。
也就是兴许创建的表,能够支持把row_format设为dynamic 2) SET GLOBAL
仅仅是在mysqlserver执行期间有效,重新启动后innodb_file_format还原为原来的格式。 3)
推断一个表是否支持超过10个blob的字段的简单办法: show table status
like ‘t1‘ \G 查看 Row_format , 假设是Compact, 必然不支持,
假设是dynamic, 则支持。