mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usr/home/ram/work/5.0.b10539 sql/field.cc: Auto merged
This commit is contained in:
@ -458,3 +458,11 @@ select h from t1;
|
||||
h
|
||||
a
|
||||
drop table t1;
|
||||
create table t1 (a bit(8)) engine=heap;
|
||||
insert into t1 values ('1111100000');
|
||||
Warnings:
|
||||
Warning 1264 Out of range value adjusted for column 'a' at row 1
|
||||
select a+0 from t1;
|
||||
a+0
|
||||
255
|
||||
drop table t1;
|
||||
|
@ -162,3 +162,12 @@ create table t1 (a int, b time, c tinyint, d bool, e char(10), f bit(1),
|
||||
insert into t1 set a=1;
|
||||
select h from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Bug #10539
|
||||
#
|
||||
|
||||
create table t1 (a bit(8)) engine=heap;
|
||||
insert into t1 values ('1111100000');
|
||||
select a+0 from t1;
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user