Cannot load from mysql.proc. The table is probably corrupted
从mysql5.5的版本开始,proc这张表中的comment字段的列属性已经由char(64)改为text类型,我们需要更改一下数据类型:
ALTER TABLE proc
MODIFY COLUMN comment
text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL AFTER sql_mode
;
最后问题得到了解决。
上一篇: gulp error: watch ENOSPC解决方法 下一篇: SSL connect error问题处理