1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Reverted wrong bug fix (Bug#11228)

This commit is contained in:
monty@mysql.com
2006-06-30 18:29:27 +03:00
parent a267b8f33c
commit 2bec1b86bb
3 changed files with 31 additions and 1 deletions

View File

@@ -332,8 +332,16 @@ UNIQUE i1idx (i1),
UNIQUE i2idx (i2));
desc t1;
Field Type Null Key Default Extra
i1 int(11) UNI 0
i1 int(11) PRI 0
i2 int(11) UNI 0
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i1` int(11) NOT NULL default '0',
`i2` int(11) NOT NULL default '0',
UNIQUE KEY `i1idx` (`i1`),
UNIQUE KEY `i2idx` (`i2`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
create table t1 (
c1 int,