From 0c0fe7a8623db29ae810df9b8c83b49d9ca86cc5 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Fri, 13 Dec 2013 17:18:10 +0400 Subject: [PATCH] Fixing temporarily test failures in ctype_xxx. The problem reported as MDEV-5444. --- mysql-test/include/ctype_datetime.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mysql-test/include/ctype_datetime.inc b/mysql-test/include/ctype_datetime.inc index 2d777ef3693..f4ec2e81ea3 100644 --- a/mysql-test/include/ctype_datetime.inc +++ b/mysql-test/include/ctype_datetime.inc @@ -15,6 +15,9 @@ SET time_zone=default; --echo # --echo # MDEV-5298 Illegal mix of collations on timestamp --echo # + +# TODO: remove "--disable_ps_protocol" when MDEV-5444 is fixed +--disable_ps_protocol SELECT CHARSET('2013-11-15 00:41:28' - INTERVAL 7 DAY); SELECT COERCIBILITY('2013-11-15 00:41:28' - INTERVAL 7 DAY); SELECT CHARSET(TIMESTAMP'2013-11-15 00:41:28' - INTERVAL 7 DAY); @@ -30,6 +33,7 @@ SELECT HEX(CONCAT('','2001-01-08 00:00:00' - INTERVAL 7 DAY)); SELECT CHARSET(CONCAT('',TIMESTAMP'2001-01-08 00:00:00' - INTERVAL 7 DAY)); SELECT COERCIBILITY(CONCAT('',TIMESTAMP'2001-01-08 00:00:00' - INTERVAL 7 DAY)); SELECT HEX(CONCAT('',TIMESTAMP'2001-01-08 00:00:00' - INTERVAL 7 DAY)); +--enable_ps_protocol CREATE TABLE t1 AS SELECT REPEAT('a', 64) AS a LIMIT 0; SHOW CREATE TABLE t1;