summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorDmitry Shulga <Dmitry.Shulga@oracle.com>2011-01-11 21:26:31 +0600
committerDmitry Shulga <Dmitry.Shulga@oracle.com>2011-01-11 21:26:31 +0600
commit4e41f5352f880daa93199b240c89331faf3205b9 (patch)
tree3889eb8fad3c0063c5fa478ffcbe549b589df1a6 /sql
parent5387af005d672e73f7db99bf3202873c39128f1a (diff)
parent0fd846bad057cc205a5b5742c0d8c61c7c73c7f6 (diff)
downloadmariadb-git-4e41f5352f880daa93199b240c89331faf3205b9.tar.gz
Auto-merge mysql-5.1 -> mysql-5.5 for bug#58887.
Diffstat (limited to 'sql')
-rw-r--r--sql/net_serv.cc12
1 files changed, 1 insertions, 11 deletions
diff --git a/sql/net_serv.cc b/sql/net_serv.cc
index ab88e87be69..d60e2051ccd 100644
--- a/sql/net_serv.cc
+++ b/sql/net_serv.cc
@@ -164,17 +164,7 @@ my_bool net_realloc(NET *net, size_t length)
DBUG_ENTER("net_realloc");
DBUG_PRINT("enter",("length: %lu", (ulong) length));
- /*
- When compression is off, net->where_b is always 0.
- With compression turned on, net->where_b may indicate
- that we still have a piece of the previous logical
- packet in the buffer, unprocessed. Take it into account
- when checking that max_allowed_packet is not exceeded.
- This ensures that the client treats max_allowed_packet
- limit identically, regardless of compression being on
- or off.
- */
- if (length >= (net->max_packet_size + net->where_b))
+ if (length >= net->max_packet_size)
{
DBUG_PRINT("error", ("Packet too large. Max size: %lu",
net->max_packet_size));