You've already forked mariadb-columnstore-engine
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:
@ -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
|
Reference in New Issue
Block a user