mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 17:54:16 +01:00
MDEV-17507 Make MTR tests work for builds without Aria for temporary tables
Skip tests which expectedly fail when Aria is not used for temporary tables
This commit is contained in:
parent
e669e705a1
commit
ae96b47f9e
5 changed files with 12 additions and 0 deletions
4
mysql-test/include/have_aria_used_for_temp_tables.inc
Normal file
4
mysql-test/include/have_aria_used_for_temp_tables.inc
Normal file
|
@ -0,0 +1,4 @@
|
|||
if (!`SELECT @@aria_used_for_temp_tables`)
|
||||
{
|
||||
skip Need Aria to be used for temporary tables;
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
# bool readonly
|
||||
|
||||
--source include/have_aria_used_for_temp_tables.inc
|
||||
--source include/have_maria.inc
|
||||
#
|
||||
# show the global and session values;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
--source include/have_aria.inc
|
||||
--source include/have_aria_used_for_temp_tables.inc
|
||||
--source include/word_size.inc
|
||||
|
||||
--vertical_results
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
###################### tmp_memory_table_size_func.test ########################
|
||||
|
||||
--source include/have_aria_used_for_temp_tables.inc
|
||||
|
||||
--source include/load_sysvars.inc
|
||||
--source include/have_sequence.inc
|
||||
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
# on the presence of the log tables (which are CSV-based).
|
||||
--source include/have_csv.inc
|
||||
|
||||
# Without aria_used_for_temp_tables some I_S tables will be MyISAM,
|
||||
# while the test expects them to be Aria
|
||||
-- source include/have_aria_used_for_temp_tables.inc
|
||||
|
||||
-- source include/have_innodb.inc
|
||||
|
||||
# Save the initial number of concurrent sessions
|
||||
|
|
Loading…
Add table
Reference in a new issue