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.
16 lines
497 B
16 lines
497 B
5 months ago
|
--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;
|