mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
704b4845aa
There were so many changes into mtr (this is the new mtr coming) that I rather copied mtr from 6.0-main here (at least this one knows how to run Maria tests). I also fixed suite/maria tests to be accepted by the new mtr. mysys/thr_mutex.c: adding DBUG_PRINT here, so that we can locate where the warning is issued.
42 lines
1.3 KiB
Text
42 lines
1.3 KiB
Text
#
|
|
# Testing of potential problems in Maria with partitioning
|
|
#
|
|
|
|
--source include/have_maria.inc
|
|
--source include/have_partition.inc
|
|
|
|
let $default_engine=`select @@global.storage_engine`;
|
|
let $default_checksum=`select @@global.maria_page_checksum`;
|
|
set global storage_engine=maria;
|
|
set session storage_engine=maria;
|
|
|
|
#
|
|
# Test outer join const propagation
|
|
#
|
|
DROP TABLE if exists t1,t2;
|
|
create table t2(a blob) engine=maria;
|
|
create table t1(a int primary key) engine=maria;
|
|
insert into t2 values ('foo'),('bar');
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (1);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (2);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
drop table t1,t2;
|
|
|
|
create table t2(a blob) engine= maria;
|
|
create table t1(a int primary key) engine= maria PARTITION BY HASH (a) PARTITIONS 2;
|
|
insert into t2 values ('foo'),('bar');
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (1);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (2);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
drop table t1,t2;
|
|
|
|
# Set defaults back
|
|
--disable_result_log
|
|
--disable_query_log
|
|
eval set global storage_engine=$default_engine;
|
|
--enable_result_log
|
|
--enable_query_log
|