1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-4674 Fix ColumnStore to run MTR tests in a build directory

This commit is contained in:
Alexander Barkov
2021-04-13 11:25:25 +04:00
parent d8b473329f
commit 75e3bbc31e
1874 changed files with 1 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# 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