diff options
Diffstat (limited to 'mysql-test/main/binary_zero_insert.test')
-rw-r--r-- | mysql-test/main/binary_zero_insert.test | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mysql-test/main/binary_zero_insert.test b/mysql-test/main/binary_zero_insert.test deleted file mode 100644 index a8769199859..00000000000 --- a/mysql-test/main/binary_zero_insert.test +++ /dev/null @@ -1,15 +0,0 @@ -# -# MDEV-25444 mysql --binary-mode is not able to replay some mysqlbinlog outputs -# -# After investigating it turns out to be a issue of mysql client not able to properly -# handle \\\0 <0 in binary>. -# In this test case we will be pipelining binary_zero_insert.bin into mysql client. -# binary_zero_insert.bin contains insert stmt with \\\0 - -CREATE TABLE `tb` (`id` int(11) NOT NULL AUTO_INCREMENT,`cb` longblob DEFAULT NULL, -PRIMARY KEY (`id`)) ENGINE=myisam AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; - ---exec $MYSQL --binary-mode test < $MYSQL_TEST_DIR/std_data/binary_zero_insert.bin -select count(*)=2 from tb; - -drop table tb; |