diff options
author | unknown <tnurnberg@sin.intern.azundris.com> | 2007-10-18 11:15:32 +0200 |
---|---|---|
committer | unknown <tnurnberg@sin.intern.azundris.com> | 2007-10-18 11:15:32 +0200 |
commit | 78a13fa46da14bb3676e0866c572483da31daea0 (patch) | |
tree | 4ab297178d0dba6ed8a0b1b38bddae4c458f43e5 /mysql-test/t/variables.test | |
parent | 151e4db0d5b9242dc2fb46e007a96cf950d23052 (diff) | |
parent | cd9d89a75d4cd5e9408cd34e6229910acf23cdc1 (diff) | |
download | mariadb-git-78a13fa46da14bb3676e0866c572483da31daea0.tar.gz |
Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-4.1-opt
into sin.intern.azundris.com:/misc/mysql/31588/41-31588
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 808dc0973d4..371cd6bc9b1 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -447,4 +447,11 @@ set @test = @@query_prealloc_size; set @@query_prealloc_size = @test; select @@query_prealloc_size = @test; -# End of 4.1 tests +# +# Bug#31588 buffer overrun when setting variables +# +# Buffer-size Off By One. Should throw valgrind-warning without fix #31588. +--error 1231 +set global sql_mode=repeat('a',80); + +--echo End of 4.1 tests |