mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Merge mysql.com:/home/svoj/devel/mysql/BUG26238/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG26238/mysql-5.1-engines
This commit is contained in:
commit
3eb448049d
2 changed files with 15 additions and 0 deletions
|
|
@ -243,3 +243,10 @@ SET @@session.auto_increment_offset=
|
||||||
@bug20830_old_session_auto_increment_offset;
|
@bug20830_old_session_auto_increment_offset;
|
||||||
SET @@session.auto_increment_increment=
|
SET @@session.auto_increment_increment=
|
||||||
@bug20830_old_session_auto_increment_increment;
|
@bug20830_old_session_auto_increment_increment;
|
||||||
|
CREATE TABLE t1(a BIT);
|
||||||
|
INSERT DELAYED INTO t1 VALUES(1);
|
||||||
|
FLUSH TABLE t1;
|
||||||
|
SELECT HEX(a) FROM t1;
|
||||||
|
HEX(a)
|
||||||
|
1
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
|
||||||
|
|
@ -234,3 +234,11 @@ SET @@session.auto_increment_offset=
|
||||||
SET @@session.auto_increment_increment=
|
SET @@session.auto_increment_increment=
|
||||||
@bug20830_old_session_auto_increment_increment;
|
@bug20830_old_session_auto_increment_increment;
|
||||||
|
|
||||||
|
#
|
||||||
|
# BUG#26238 - inserted delayed always inserts 0 for BIT columns
|
||||||
|
#
|
||||||
|
CREATE TABLE t1(a BIT);
|
||||||
|
INSERT DELAYED INTO t1 VALUES(1);
|
||||||
|
FLUSH TABLE t1;
|
||||||
|
SELECT HEX(a) FROM t1;
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue