mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
26cc22f3fe
mysql-test/suite/maria/maria-partitioning.result: New test case mysql-test/suite/maria/maria-partitioning.test: New test case sql/sql_base.cc: Ignore HA_EXTRA_NORMAL for wait_while_table_is_used() More DBUG sql/sql_partition.cc: Don't use HA_EXTRA_FORCE_REOPEN for wait_while_table_is_used() as the table is opened multiple times (in prep_alter_part_table) This fixes the assert in Aria where we check if table is opened multiple times if HA_EXTRA_FORCE_REOPEN is issued
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
set global storage_engine=aria;
|
|
set session storage_engine=aria;
|
|
DROP TABLE if exists t1,t2;
|
|
Warnings:
|
|
Note 1051 Unknown table 't1'
|
|
Note 1051 Unknown table 't2'
|
|
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) engine= aria;
|
|
create table t1(a int primary key) engine= aria 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;
|
|
CREATE TABLE t1 ( i INT ) ENGINE=Aria
|
|
PARTITION BY HASH(i) PARTITIONS 2;
|
|
ALTER TABLE t1 ADD PARTITION PARTITIONS 2;
|
|
drop table t1;
|