maria_partition.test 1.7 KB
Newer Older
Sergei Golubchik's avatar
Sergei Golubchik committed
1
# Aria tests which require partitioning enabled
2 3 4 5 6

--source include/have_partition.inc
-- source include/have_maria.inc

let $default_engine=`select @@global.storage_engine`;
Sergei Golubchik's avatar
Sergei Golubchik committed
7 8 9 10
let $default_checksum=`select @@global.aria_page_checksum`;
set global storage_engine=aria;
set session storage_engine=aria;
set global aria_page_checksum=0;
11 12 13 14 15 16 17 18 19

# Initialise
--disable_warnings
drop table if exists t1,t2;
drop view if exists v1;
--enable_warnings
SET SQL_WARNINGS=1;

#
Sergei Golubchik's avatar
Sergei Golubchik committed
20
# Bug #39227 Aria: crash with ALTER TABLE PARTITION
21 22 23 24 25 26 27 28
#

create table t1 (s1 int);
insert into t1 values (1);
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
alter table t1 partition by list (s1) (partition p1 values in (2));
drop table t1;

29 30 31
#
# Test outer join const propagation
#
Sergei Golubchik's avatar
Sergei Golubchik committed
32 33
create table t2(a blob) engine=aria;
create table t1(a int primary key) engine=aria;
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
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);
create table t1(a int primary key) 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;

52 53 54
# Set defaults back
--disable_result_log
--disable_query_log
Sergei Golubchik's avatar
Sergei Golubchik committed
55 56
eval set global storage_engine=$default_engine, aria_page_checksum=$default_checksum;
set global aria_log_file_size=default;
57 58
--enable_result_log
--enable_query_log