用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
2.5 KiB

# Should use myisam
create logfile group ndb_lg1 add undofile 'ndb_undo1.dat' initial_size=32M engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
create logfile group ndb_lg1 add undofile 'ndb_undo1.dat' engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
create logfile group ndb_lg1 add undofile 'ndb_undo1.dat';
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
create tablespace ndb_ts1 add datafile 'ndb_ts1.dat' use logfile group ndb_lg1 engine=myisam initial_size=32M;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE TABLESPACE'
create tablespace ndb_ts1 add datafile 'ndb_ts1.dat' use logfile group ndb_lg1 engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE TABLESPACE'
create tablespace ndb_ts1 add datafile 'ndb_ts1.dat' use logfile group ndb_lg1 engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE TABLESPACE'
alter logfile group ndb_lg1 add undofile 'ndb_undo1.dat' wait engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
alter logfile group ndb_lg1 add undofile 'ndb_undo1.dat' engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
alter logfile group ndb_lg1 add undofile 'ndb_undo1.dat' engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
alter tablespace ndb_ts1 add datafile 'ndb_ts1.dat' initial_size=32M engine=myisam;
ERROR HY000: Tablespace ndb_ts1 doesn't exist.
alter tablespace ndb_ts1 add datafile 'ndb_ts1.dat' engine=myisam;
ERROR HY000: Tablespace ndb_ts1 doesn't exist.
alter tablespace ndb_ts1 add datafile 'ndb_ts1.dat' engine=myisam;
ERROR HY000: Tablespace ndb_ts1 doesn't exist.
drop logfile group ndb_lg1 engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
drop logfile group ndb_lg1 engine=myisam;
ERROR HY000: Table storage engine 'MyISAM' does not support the create option 'CREATE/ALTER/DROP LOGFILE GROUP'
drop tablespace ndb_ts1 engine=myisam;
ERROR HY000: Tablespace ndb_ts1 doesn't exist.
drop tablespace ndb_ts1 engine=myisam;
ERROR HY000: Tablespace ndb_ts1 doesn't exist.