diff options
author | unknown <serg@serg.mylan> | 2003-06-10 15:19:59 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-06-10 15:19:59 +0200 |
commit | 6e4f383a1c1914f1d0a0c15c78b1c8ba70292277 (patch) | |
tree | 8777eba728940767c084573d3fe01784df905a2b /mysql-test/r/isam.result | |
parent | dc5d1c87b0658b8f034ca2328559d19be40e05a4 (diff) | |
download | mariadb-git-6e4f383a1c1914f1d0a0c15c78b1c8ba70292277.tar.gz |
test results updated
Diffstat (limited to 'mysql-test/r/isam.result')
-rw-r--r-- | mysql-test/r/isam.result | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/r/isam.result b/mysql-test/r/isam.result index 5975ac8a8a0..5ac54668443 100644 --- a/mysql-test/r/isam.result +++ b/mysql-test/r/isam.result @@ -38,13 +38,13 @@ a b c 6 6 6 drop table t1; create table t1 (a int,b text, index(a)) type=isam; -Column 'a' is used with UNIQUE or INDEX but is not defined as NOT NULL +ERROR 42000: Column 'a' is used with UNIQUE or INDEX but is not defined as NOT NULL create table t1 (a int,b text, index(b)) type=isam; -BLOB column 'b' can't be used in key specification with the used table type +ERROR 42000: BLOB column 'b' can't be used in key specification with the used table type create table t1 (ordid int(8) not null auto_increment, ord varchar(50) not null, primary key (ord,ordid)) type=isam; -Incorrect table definition; There can only be one auto column and it must be defined as a key +ERROR 42000: Incorrect table definition; There can only be one auto column and it must be defined as a key create table t1 (ordid int(8), unique (ordid)) type=isam; -Column 'ordid' is used with UNIQUE or INDEX but is not defined as NOT NULL +ERROR 42000: Column 'ordid' is used with UNIQUE or INDEX but is not defined as NOT NULL drop table if exists t1; Warnings: Note 1051 Unknown table 't1' @@ -72,10 +72,10 @@ Table Op Msg_type Msg_text test.t2 check error Table 't2' was not locked with LOCK TABLES test.t1 check status OK show columns from t1; -Field Type Collation Null Key Default Extra -a int(11) NULL PRI 0 -b int(11) NULL MUL 0 -c int(11) NULL 0 +Field Type Null Key Default Extra +a int(11) PRI 0 +b int(11) MUL 0 +c int(11) 0 show full columns from t1; Field Type Collation Null Key Default Extra Privileges Comment a int(11) NULL PRI 0 select,insert,update,references |