用于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.
 
 
 
 
 
 

15 lines
497 B

--source include/have_ndb.inc
# Turn off ndb_read_backup since test does explain
# and other stuff whose output will thus differ
set @save_ndb_read_backup = @@global.ndb_read_backup;
set @@global.ndb_read_backup = OFF;
SET default_storage_engine=ndbcluster;
SET ndb_use_exact_count=1;
--source include/gis_generic.inc
set @@optimizer_switch = 'engine_condition_pushdown=on';
--source include/gis_generic.inc
# Restore ndb_read_backup value
set @@global.ndb_read_backup = @save_ndb_read_backup;