diff options
Diffstat (limited to 'mysql-test/main/constraints.result')
-rw-r--r-- | mysql-test/main/constraints.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/constraints.result b/mysql-test/main/constraints.result index fe9398ea8ce..d891c10a2bd 100644 --- a/mysql-test/main/constraints.result +++ b/mysql-test/main/constraints.result @@ -7,7 +7,7 @@ t1 CREATE TABLE `t1` ( ) ENGINE=MyISAM DEFAULT CHARSET=latin1 insert into t1 values (1); insert into t1 values (0); -ERROR 23000: CONSTRAINT `a` failed for `test`.`t1` +ERROR HY000: FIELD CONSTRAINT `a` failed for `test`.`t1` drop table t1; create table t1 (a int, b int, check (a>b)); show create table t1; |