1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

bugfix for 'ANALYZE for MERGE' and table-less MERGE table

This commit is contained in:
serg@serg.mysql.com
2003-01-16 13:23:33 +01:00
parent 01573f0d95
commit c16e908a2b
3 changed files with 3 additions and 3 deletions

View File

@ -258,7 +258,7 @@ t3 CREATE TABLE `t3` (
`othr` int(11) NOT NULL default '0'
) TYPE=MRG_MyISAM UNION=(t1,t2)
drop table t3,t2,t1;
create table t1 (a int not null) type=merge;
create table t1 (a int not null, key(a)) type=merge;
select * from t1;
a
drop table t1;

View File

@ -105,7 +105,7 @@ drop table t3,t2,t1;
#
# Test table without unions
#
create table t1 (a int not null) type=merge;
create table t1 (a int not null, key(a)) type=merge;
select * from t1;
drop table t1;