1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +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

@@ -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;