微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

mysql-plugin-disable-myisam

程序名称:mysql-plugin-disable-myisam

授权协议: GPL

操作系统: Linux

开发语言: C/C++

mysql-plugin-disable-myisam 介绍

用于禁止创建 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

mysql-plugin-disable-myisam 官网

https://github.com/xiezhenye/mysql-plugin-disable-myisam

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐