diff options
author | Alexander Nozdrin <alik@sun.com> | 2010-05-20 14:00:41 +0400 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2010-05-20 14:00:41 +0400 |
commit | a18861e4adab138553da6b55a7b1d7286acbe23d (patch) | |
tree | d0d6d956fb83128c59c5b93165f9e8108896170d /mysql-test/t/parser_stack.test | |
parent | 7af6ac8f3ed64333f3dcb87c15e93bcfafd66bf1 (diff) | |
parent | 759d5bc5351c79ef4835d6ba7ff6db98b56b2041 (diff) | |
download | mariadb-git-a18861e4adab138553da6b55a7b1d7286acbe23d.tar.gz |
Auto-merge from mysql-trunk-bugfixing.
Diffstat (limited to 'mysql-test/t/parser_stack.test')
-rw-r--r-- | mysql-test/t/parser_stack.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/parser_stack.test b/mysql-test/t/parser_stack.test index 3330ef41833..bdcad5aa1b4 100644 --- a/mysql-test/t/parser_stack.test +++ b/mysql-test/t/parser_stack.test @@ -399,4 +399,12 @@ delimiter ;$$ drop procedure p_37228; +# +# Bug#27863 (excessive memory usage for many small queries in a multiquery +# packet). +# +let $i=`select repeat("set @a=1;", 65535)`; +--disable_query_log +eval $i; +--enable_query_log |