Error code:1728 Cannot load from mysql.proc. The table is probably corrupted

Posted zsychanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Error code:1728 Cannot load from mysql.proc. The table is probably corrupted相关的知识,希望对你有一定的参考价值。

Error code:1728 Cannot load from mysql.proc. The table is probably corrupted

http://bugs.mysql.com/bug.php?

id=50183
原因是mysql.proc 在5.1 comment char(64) -> 5.5 comment text 导致

The difference seen in the mysql.proc table is
5.5
<   `comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
---
5.1
 >   `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT ‘‘,


我们仅仅须要将table proc column comment 改为text类型就能够了

ALTER TABLE `proc`
MODIFY COLUMN `comment`  text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL;

















以上是关于Error code:1728 Cannot load from mysql.proc. The table is probably corrupted的主要内容,如果未能解决你的问题,请参考以下文章

[pdo_mysql.lo] Error 1 或者 [php_mysql.lo] Error 1

Error: Cannot find module ‘express‘

Error: Cannot find module ‘express‘

Error: Cannot find module

Error: Cannot find module PhantomJS

C++求助[Error]cannot convert 'const wchar_t*' to 'LPCSTR aka const char*