Skip to content

Commit

Permalink
removed test029, empty binary blob dump, because of a bug in mysqldum…
Browse files Browse the repository at this point in the history
…p 5.7.23
  • Loading branch information
ifsnop committed Oct 9, 2018
1 parent c4da8fa commit 806547b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 0 additions & 2 deletions tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ mysqldump -utravis test001 \
> mysqldump_test001.sql
ret[((index++))]=$?

cat mysqldump_test001.sql

mysqldump -utravis test001 \
--no-autocommit \
--skip-extended-insert \
Expand Down
6 changes: 5 additions & 1 deletion tests/test001.src.sql
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ CREATE TABLE `test029` (
`col` blob NOT NULL
);
INSERT INTO `test029` VALUES (1,0x00010203040506070809909192939495969798A9);
INSERT INTO `test029` VALUES (2,'');
-- mysqldump 5.7.23 has a bug, an appends _binary to empty blob data, which is incorrect.
-- mysqldump 5.7.17 is ok
-- lets skip this test an implement it in some near future
-- https://bugs.mysql.com/bug.php?id=80150
INSERT INTO `test029` VALUES (2,0x99AAFF);

DROP TABLE IF EXISTS `test033`;
CREATE TABLE `test033` (
Expand Down

0 comments on commit 806547b

Please sign in to comment.