Skip to content
Permalink
Browse files
Comment out the statement that triggers MDEV-18366
  • Loading branch information
dr-m committed Jan 24, 2019
1 parent 46f712c commit 7930ab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
@@ -259,9 +259,6 @@ ERROR 22007: Incorrect date value: '20190132' for column `test`.`t1`.`vb` at row
SELECT * FROM t1;
a b vb
ROLLBACK;
SELECT * FROM t1;
a b vb
1 20190132 0000-00-00
CHECK TABLE t1;
Table Op Msg_type Msg_text
test.t1 check status OK
@@ -278,6 +278,7 @@ DELETE FROM t1;
INSERT INTO t1 (a,b) VALUES(1,20190123);
SELECT * FROM t1;
ROLLBACK;
SELECT * FROM t1;
# MDEV-18366 FIXME: fix the crash and enable this
# SELECT * FROM t1;
CHECK TABLE t1;
DROP TABLE t1;

0 comments on commit 7930ab7

Please sign in to comment.