mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
set global storage_engine=aria;
|
|
set session storage_engine=aria;
|
|
set global aria_page_checksum=0;
|
|
drop table if exists t1,t2;
|
|
drop view if exists v1;
|
|
SET SQL_WARNINGS=1;
|
|
create table t1 (s1 int);
|
|
insert into t1 values (1);
|
|
alter table t1 partition by list (s1) (partition p1 values in (2));
|
|
ERROR HY000: Table has no partition for value 1
|
|
drop table t1;
|
|
create table t2(a blob) engine=aria;
|
|
create table t1(a int primary key) engine=aria;
|
|
insert into t2 values ('foo'),('bar');
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
a a
|
|
insert into t1 values (1);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
a a
|
|
insert into t1 values (2);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
a a
|
|
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';
|
|
a a
|
|
insert into t1 values (1);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
a a
|
|
insert into t1 values (2);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
a a
|
|
drop table t1,t2;
|