diff options
author | evgen@moonbone.local <> | 2006-07-01 01:37:20 +0400 |
---|---|---|
committer | evgen@moonbone.local <> | 2006-07-01 01:37:20 +0400 |
commit | 1459784aba4bbf11fdc18d73ccc9f4cc735edbcd (patch) | |
tree | 591d4f4c1aefba5ba7f1b24cfe60b11d34d8ab08 /mysql-test/r/key.result | |
parent | a989f7261eeb5964c80100745310c58c606c5e8b (diff) | |
download | mariadb-git-1459784aba4bbf11fdc18d73ccc9f4cc735edbcd.tar.gz |
Reverted wrong bug fix (Bug#11228)
Diffstat (limited to 'mysql-test/r/key.result')
-rw-r--r-- | mysql-test/r/key.result | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mysql-test/r/key.result b/mysql-test/r/key.result index af1db92b1ef..ea8d4338d08 100644 --- a/mysql-test/r/key.result +++ b/mysql-test/r/key.result @@ -336,8 +336,16 @@ UNIQUE i1idx (i1), UNIQUE i2idx (i2)); desc t1; Field Type Null Key Default Extra -i1 int(11) NO UNI +i1 int(11) NO PRI i2 int(11) NO UNI +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `i1` int(11) NOT NULL, + `i2` int(11) NOT NULL, + UNIQUE KEY `i1idx` (`i1`), + UNIQUE KEY `i2idx` (`i2`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; create table t1 ( c1 int, |