1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix error code in some tests because of merge

mysql-test/t/errors.test:
  Fix error code
mysql-test/t/type_bit.test:
  Fix error code
mysql-test/t/type_bit_innodb.test:
  Fix error code
This commit is contained in:
unknown
2005-08-08 11:42:09 -07:00
parent 1f01817e09
commit 05071ff49f
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ drop table t1;
#
# 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));
set sql_mode='traditional';
--error 1074

View File

@ -19,7 +19,7 @@ select 0 + b'1000000000000001';
drop table if exists t1;
--enable_warnings
--error 1074
--error 1439
create table t1 (a bit(65));
create table t1 (a bit(0));

View File

@ -20,7 +20,7 @@ select 0 + b'1000000000000001';
drop table if exists t1;
--enable_warnings
--error 1438
--error 1439
create table t1 (a bit(65)) engine=innodb;
create table t1 (a bit(0)) engine=innodb;