diff options
author | unknown <gshchepa/uchum@gleb.loc> | 2007-05-25 21:27:34 +0500 |
---|---|---|
committer | unknown <gshchepa/uchum@gleb.loc> | 2007-05-25 21:27:34 +0500 |
commit | a2051ec57c84b19c6c40f2f53a68afe7d53fc345 (patch) | |
tree | 5823b64b01895dc5c3717c626cad17363d426295 /mysql-test/t/mysqldump.test | |
parent | 33f40d86e1ebada81d0e6d4072a87ec7016baed2 (diff) | |
parent | c326457d78af9a27ad58a74c31125594d9fc2a75 (diff) | |
download | mariadb-git-a2051ec57c84b19c6c40f2f53a68afe7d53fc345.tar.gz |
Merge gshchepa@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into gleb.loc:/home/uchum/work/bk/mysql-5.0-opt
Diffstat (limited to 'mysql-test/t/mysqldump.test')
-rw-r--r-- | mysql-test/t/mysqldump.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index 4c4690520c6..7df65f2b2e1 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -1528,7 +1528,14 @@ drop user user2; drop database mysqldump_test_db; +--echo # +--echo # Bug #28522: buffer overrun by '\0' byte using --hex-blob. +--echo # +CREATE TABLE t1 (c1 INT, c2 LONGBLOB); +INSERT INTO t1 SET c1=11, c2=REPEAT('q',509); +--exec $MYSQL_DUMP --skip-create --compact --hex-blob test t1 +DROP TABLE t1; --echo # --echo # End of 5.0 tests |