diff options
Diffstat (limited to 'mysql-test/main/func_compress.test')
-rw-r--r-- | mysql-test/main/func_compress.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/main/func_compress.test b/mysql-test/main/func_compress.test index 2a6c0276705..f41a5898154 100644 --- a/mysql-test/main/func_compress.test +++ b/mysql-test/main/func_compress.test @@ -48,6 +48,9 @@ drop table t1; # note that when LOW_MEMORY is set the "test" below is meaningless # +#view protocol generates additional warning +--disable_view_protocol + set @@global.max_allowed_packet=1048576*100; --replace_result "''" XXX "'1'" XXX @@ -59,6 +62,8 @@ disconnect newconn; connection default; set @@global.max_allowed_packet=@save_max_allowed_packet; +--enable_view_protocol + # # Bug #18643: problem with null values # @@ -185,7 +190,9 @@ DROP TABLE t1; --echo # --echo # MDEV-23149 Server crashes in my_convert / ErrConvString::ptr / Item_char_typecast::check_truncation_with_warn --echo # +--disable_view_protocol select 'foo' in (cast(compress('bar') as char(4)), 'qux'); +--enable_view_protocol --echo # --echo # End of 10.2 tests |