summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/max_allowed_packet_func.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/sys_vars/r/max_allowed_packet_func.result')
-rw-r--r--mysql-test/suite/sys_vars/r/max_allowed_packet_func.result12
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/suite/sys_vars/r/max_allowed_packet_func.result b/mysql-test/suite/sys_vars/r/max_allowed_packet_func.result
index 62d543d0a0f..48e85c03ee5 100644
--- a/mysql-test/suite/sys_vars/r/max_allowed_packet_func.result
+++ b/mysql-test/suite/sys_vars/r/max_allowed_packet_func.result
@@ -12,14 +12,14 @@ name BLOB
## Setting value of max_allowed packet and net_buffer_length to 1024 ##
SET @@session.max_allowed_packet = 1024;
ERROR HY000: SESSION variable 'max_allowed_packet' is read-only. Use SET GLOBAL to assign the value
-SELECT @@session.max_allowed_packet;
-@@session.max_allowed_packet
-16777216
+SELECT @@session.max_allowed_packet > 0;
+@@session.max_allowed_packet > 0
+1
SET @@session.net_buffer_length = 1024;
ERROR HY000: SESSION variable 'net_buffer_length' is read-only. Use SET GLOBAL to assign the value
-SELECT @@session.net_buffer_length;
-@@session.net_buffer_length
-16384
+SELECT @@session.net_buffer_length > 0;
+@@session.net_buffer_length > 0
+1
'#--------------------FN_DYNVARS_070_02-------------------------#'
## Setting value of max_allowed packet and net_buffer_length to 1024 ##
SET @@global.max_allowed_packet = 1024;