1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-18 21:44:02 +03:00
mariadb-columnstore-engine/mysql-test/columnstore/include/combinations.myisam-columnstore.inc

21 lines
539 B
PHP

# This file is needed to force tests use combinations.myisam-columnstore.combinations
# Also, let's set default_storage_engine:
# - either according to the current combination
# - or to ColumnStore by default, if mtr is running
# without combinations (e.g with --extern)
--disable_query_log
SET @combination=NULL;
if ($MTR_COMBINATION_MYISAM)
{
SET @combination="MYISAM";
}
if ($MTR_COMBINATION_COLUMNSTORE)
{
SET @combination="COLUMNSTORE";
}
SET @@default_storage_engine=COALESCE(@combination,'ColumnStore');
--enable_query_log