diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2013-12-13 17:18:10 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2013-12-13 17:18:10 +0400 |
commit | 0c0fe7a8623db29ae810df9b8c83b49d9ca86cc5 (patch) | |
tree | 3d2afcf14e9fd94d7a871c7ec9c6ead6ed97cc6c /mysql-test | |
parent | 258bf32d3c8d7462d54c3acce724308faf270b94 (diff) | |
download | mariadb-git-0c0fe7a8623db29ae810df9b8c83b49d9ca86cc5.tar.gz |
Fixing temporarily test failures in ctype_xxx.
The problem reported as MDEV-5444.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/include/ctype_datetime.inc | 4 |
1 files changed, 4 insertions, 0 deletions
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; |