diff options
author | unknown <tnurnberg@sin.intern.azundris.com> | 2007-10-18 11:13:52 +0200 |
---|---|---|
committer | unknown <tnurnberg@sin.intern.azundris.com> | 2007-10-18 11:13:52 +0200 |
commit | ce6a715f3a7d3c647317e2bba3c8583c84785d21 (patch) | |
tree | b304a7534929f703406532e15fef3e11d2b41efe /mysql-test/r/variables.result | |
parent | 4e1e091c9e19c108e9c19c1752fce152183943e5 (diff) | |
download | mariadb-git-ce6a715f3a7d3c647317e2bba3c8583c84785d21.tar.gz |
Bug#31588: buffer overrun when setting variables
post-merge fixes: format string was changed 5.0 -> 5.1, resulting in longer output
mysql-test/r/variables.result:
post-merge fixes: format string was changed 5.0 -> 5.1, resulting in longer output
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r-- | mysql-test/r/variables.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index ad56ddc2e94..3b4805cd803 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -798,7 +798,7 @@ select @@query_prealloc_size = @test; @@query_prealloc_size = @test 1 set global sql_mode=repeat('a',80); -ERROR 42000: Variable 'sql_mode' can't be set to the value of 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' +ERROR 42000: Variable 'sql_mode' can't be set to the value of 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' End of 4.1 tests create table t1 (a int); select a into @x from t1; |