diff options
author | Matthias Leich <Matthias.Leich@sun.com> | 2009-02-09 22:00:15 +0100 |
---|---|---|
committer | Matthias Leich <Matthias.Leich@sun.com> | 2009-02-09 22:00:15 +0100 |
commit | 0ef6e2a5ab39fc1d2768ba651d0c3ef85612c2c6 (patch) | |
tree | cd78b56e7f59f946ca6f42d96b186a1489fb8bd2 /mysql-test/r/packet.result | |
parent | 3ba87c370005437656bbcafb0b9ee75527342752 (diff) | |
parent | 4c0dd2a7b346604ca57ea5871bc04298f174561c (diff) | |
download | mariadb-git-0ef6e2a5ab39fc1d2768ba651d0c3ef85612c2c6.tar.gz |
Merge 5.0 -> 5.1
Diffstat (limited to 'mysql-test/r/packet.result')
-rw-r--r-- | mysql-test/r/packet.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/packet.result b/mysql-test/r/packet.result index fa2fb33d278..ecbb47d4ee0 100644 --- a/mysql-test/r/packet.result +++ b/mysql-test/r/packet.result @@ -1,3 +1,5 @@ +set @max_allowed_packet=@@global.max_allowed_packet; +set @net_buffer_length=@@global.net_buffer_length; set global max_allowed_packet=100; Warnings: Warning 1292 Truncated incorrect max_allowed_packet value: '100' @@ -23,3 +25,5 @@ len select length(repeat('a',2000)); length(repeat('a',2000)) 2000 +set global max_allowed_packet=@max_allowed_packet; +set global net_buffer_length=@net_buffer_length; |