1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

merge fixes

This commit is contained in:
gkodinov@dl145s.mysql.com
2006-09-18 18:30:51 +04:00
parent ce8ed889d7
commit f1100c007d
7 changed files with 27 additions and 60 deletions

View File

@@ -780,6 +780,8 @@ t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=4294967295
drop table t1;
create table t1 (upgrade int);
drop table t1;
CREATE TABLE t1 (a int, b int);
insert into t1 values (1,1),(1,2);
CREATE TABLE t2 (primary key (a)) select * from t1;