summaryrefslogtreecommitdiff
path: root/mysql-test/r/isam.result
diff options
context:
space:
mode:
authorunknown <paul@kite-hub.kitebird.com>2004-06-15 15:38:36 -0500
committerunknown <paul@kite-hub.kitebird.com>2004-06-15 15:38:36 -0500
commitb1cecee05509b6f8637eb13b5ad9dbf9e46aaab2 (patch)
treea8d725d2e34802763b29ee7f113e09157f8a172c /mysql-test/r/isam.result
parenta35bd157733b419b042b7bb0d051840ce5383324 (diff)
downloadmariadb-git-b1cecee05509b6f8637eb13b5ad9dbf9e46aaab2.tar.gz
Language/consistency edits to error messages
and affected test results.
Diffstat (limited to 'mysql-test/r/isam.result')
-rw-r--r--mysql-test/r/isam.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/isam.result b/mysql-test/r/isam.result
index 2c7b3a4a568..52eb2d73ed5 100644
--- a/mysql-test/r/isam.result
+++ b/mysql-test/r/isam.result
@@ -34,7 +34,7 @@ ERROR 42000: Column 'a' is used with UNIQUE or INDEX but is not defined as NOT N
create table t1 (a int,b text, index(b)) engine=isam;
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)) engine=isam;
-ERROR 42000: 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 be only one auto column and it must be defined as a key
create table t1 (ordid int(8), unique (ordid)) engine=isam;
ERROR 42000: Column 'ordid' is used with UNIQUE or INDEX but is not defined as NOT NULL
drop table if exists t1;