Commit 253d528b authored by jimw@mysql.com's avatar jimw@mysql.com

Fix error code in some tests because of merge

parent 4cdca348
...@@ -35,7 +35,7 @@ drop table t1; ...@@ -35,7 +35,7 @@ drop table t1;
# #
# Bug #6080: Error message for a field with a display width that is too long # Bug #6080: Error message for a field with a display width that is too long
# #
--error 1438 --error 1439
create table t1 (a int(256)); create table t1 (a int(256));
set sql_mode='traditional'; set sql_mode='traditional';
--error 1074 --error 1074
......
...@@ -19,7 +19,7 @@ select 0 + b'1000000000000001'; ...@@ -19,7 +19,7 @@ select 0 + b'1000000000000001';
drop table if exists t1; drop table if exists t1;
--enable_warnings --enable_warnings
--error 1074 --error 1439
create table t1 (a bit(65)); create table t1 (a bit(65));
create table t1 (a bit(0)); create table t1 (a bit(0));
......
...@@ -20,7 +20,7 @@ select 0 + b'1000000000000001'; ...@@ -20,7 +20,7 @@ select 0 + b'1000000000000001';
drop table if exists t1; drop table if exists t1;
--enable_warnings --enable_warnings
--error 1438 --error 1439
create table t1 (a bit(65)) engine=innodb; create table t1 (a bit(65)) engine=innodb;
create table t1 (a bit(0)) engine=innodb; create table t1 (a bit(0)) engine=innodb;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment