diff options
Diffstat (limited to 'mysql-test/r/func_str.result')
-rw-r--r-- | mysql-test/r/func_str.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/func_str.result b/mysql-test/r/func_str.result index f196571218f..d8ad6d7edb6 100644 --- a/mysql-test/r/func_str.result +++ b/mysql-test/r/func_str.result @@ -1,5 +1,7 @@ drop table if exists t1,t2; set global max_allowed_packet=1048576; +connect conn1,localhost,root,,; +connection conn1; set names latin1; select 'hello',"'hello'",'""hello""','''h''e''l''l''o''',"hel""lo",'hel\'lo'; hello 'hello' ""hello"" 'h'e'l'l'o' hel"lo hel'lo @@ -2911,6 +2913,7 @@ SELECT @tmp_max:= @@global.max_allowed_packet; @tmp_max:= @@global.max_allowed_packet 1048576 SET @@global.max_allowed_packet=1024*1024*1024; +connect newconn, localhost, root,,; SELECT @@global.max_allowed_packet; @@global.max_allowed_packet 1073741824 @@ -2942,7 +2945,9 @@ Warning 1292 Truncated incorrect INTEGER value: '511993d3c99719e38a6779073019dac Warning 1292 Truncated incorrect DECIMAL value: '[.DC2.]' Warning 1292 Truncated incorrect INTEGER value: '511993d3c99719e38a6779073019dacd7178ddb9' Warning 1292 Truncated incorrect DOUBLE value: '0.000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' +connection conn1; SET @@global.max_allowed_packet:= @tmp_max; +disconnect newconn; SELECT @tmp_max:= @@global.max_allowed_packet; @tmp_max:= @@global.max_allowed_packet 1048576 @@ -4542,6 +4547,8 @@ SET NAMES latin2; EXECUTE stmt; COLLATION(space(2)) latin2_general_ci +disconnect conn1; +connection default; set global max_allowed_packet=default; # # End of 5.6 tests |