mysql-plugin-disable-myisam禁止创建 myiam 表
用于禁止创建 myiam 表的 mysql 插件。
usage
cp -r src /path/to/mysql-src/plugin/disable_myisam
cd /path/to/mysql-src
cmake .
cd plugin/disable_myisam
make
make install
then, load the plugin into mysql
mysql> INSTALL PLUGIN DISABLE_MYISAM SONAME 'dm.so';
mysql> CREATE TABLE `test4` (
`id` int(11) AUTO_INCREMENT,
`value` varchar(30),
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
ERROR 1030 (HY000): Got error 1 from storage engine
评论
