Commit 0c0fe7a8 authored by Alexander Barkov's avatar Alexander Barkov

Fixing temporarily test failures in ctype_xxx.

The problem reported as MDEV-5444.
parent 258bf32d
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment