mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
test fix
This commit is contained in:
@@ -890,15 +890,15 @@ s1
|
|||||||
2
|
2
|
||||||
3
|
3
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (a int)
|
|
||||||
partition by key (a)
|
|
||||||
(partition p0 engine = MERGE);
|
|
||||||
ERROR HY000: MyISAM Merge handler cannot be used in partitioned tables
|
|
||||||
create table t1 (a int) engine=memory
|
create table t1 (a int) engine=memory
|
||||||
partition by key(a);
|
partition by key(a);
|
||||||
insert into t1 values (1);
|
insert into t1 values (1);
|
||||||
create index inx1 on t1(a);
|
create index inx1 on t1(a);
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
create table t1 (a int)
|
||||||
|
partition by key (a)
|
||||||
|
(partition p0 engine = MERGE);
|
||||||
|
ERROR HY000: MyISAM Merge handler cannot be used in partitioned tables
|
||||||
create table t1 (a varchar(1))
|
create table t1 (a varchar(1))
|
||||||
partition by key (a)
|
partition by key (a)
|
||||||
as select 'a';
|
as select 'a';
|
||||||
|
@@ -1076,6 +1076,5 @@ REPAIR TABLE t1;
|
|||||||
OPTIMIZE TABLE t1;
|
OPTIMIZE TABLE t1;
|
||||||
|
|
||||||
drop table t1;
|
drop table t1;
|
||||||
>>>>>>>
|
|
||||||
|
|
||||||
--echo End of 5.1 tests
|
--echo End of 5.1 tests
|
||||||
|
Reference in New Issue
Block a user