MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size)

This commit is contained in:
Oleksandr Byelkin 2015-08-11 18:45:38 +02:00 committed by Sergei Golubchik
commit e3982cead2
429 changed files with 1479 additions and 666 deletions

View file

@ -2,6 +2,11 @@
drop table if exists t1;
--enable_warnings
set global max_allowed_packet=1048576;
connect (conn1,localhost,root,,);
connection conn1;
set names latin1;
#
@ -111,3 +116,6 @@ drop table t1;
SELECT HEX(WEIGHT_STRING('ab' AS CHAR(1000000000000000000)));
SELECT HEX(WEIGHT_STRING('ab' AS BINARY(1000000000000000000)));
disconnect conn1;
connection default;
set global max_allowed_packet=default;