mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
After merge fix.
This commit is contained in:
@ -277,7 +277,7 @@ t3 CREATE TABLE `t3` (
|
|||||||
drop table t3,t2,t1;
|
drop table t3,t2,t1;
|
||||||
create table t1 (a int not null, key(a)) engine=merge;
|
create table t1 (a int not null, key(a)) engine=merge;
|
||||||
select * from t1;
|
select * from t1;
|
||||||
a
|
ERROR HY000: Got error 124 from storage engine
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (a int not null, b int not null, key(a,b));
|
create table t1 (a int not null, b int not null, key(a,b));
|
||||||
create table t2 (a int not null, b int not null, key(a,b));
|
create table t2 (a int not null, b int not null, key(a,b));
|
||||||
|
@ -124,6 +124,7 @@ drop table t3,t2,t1;
|
|||||||
# Test table without unions
|
# Test table without unions
|
||||||
#
|
#
|
||||||
create table t1 (a int not null, key(a)) engine=merge;
|
create table t1 (a int not null, key(a)) engine=merge;
|
||||||
|
--error 1030
|
||||||
select * from t1;
|
select * from t1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user