mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into olga.mysql.com:/home/igor/mysql-5.0-opt sql/item_cmpfunc.cc: Auto merged
This commit is contained in:
@ -136,4 +136,13 @@ insert into t1 values(NULL, 0x412020);
|
||||
ERROR 22001: Data too long for column 'vb' at row 1
|
||||
drop table t1;
|
||||
set @@sql_mode= @old_sql_mode;
|
||||
create table t1(f1 int, f2 binary(2) not null, f3 char(2) not null);
|
||||
insert into t1 set f1=1;
|
||||
Warnings:
|
||||
Warning 1364 Field 'f2' doesn't have a default value
|
||||
Warning 1364 Field 'f3' doesn't have a default value
|
||||
select hex(f2), hex(f3) from t1;
|
||||
hex(f2) hex(f3)
|
||||
0000
|
||||
drop table t1;
|
||||
End of 5.0 tests
|
||||
|
@ -91,4 +91,12 @@ insert into t1 values(NULL, 0x412020);
|
||||
drop table t1;
|
||||
set @@sql_mode= @old_sql_mode;
|
||||
|
||||
#
|
||||
# Bug#14171: Wrong default value for a BINARY field
|
||||
#
|
||||
create table t1(f1 int, f2 binary(2) not null, f3 char(2) not null);
|
||||
insert into t1 set f1=1;
|
||||
select hex(f2), hex(f3) from t1;
|
||||
drop table t1;
|
||||
|
||||
--echo End of 5.0 tests
|
||||
|
Reference in New Issue
Block a user