Commit 7930ab7e authored by Marko Mäkelä's avatar Marko Mäkelä

Comment out the statement that triggers MDEV-18366

parent 46f712c7
...@@ -259,9 +259,6 @@ ERROR 22007: Incorrect date value: '20190132' for column `test`.`t1`.`vb` at row ...@@ -259,9 +259,6 @@ ERROR 22007: Incorrect date value: '20190132' for column `test`.`t1`.`vb` at row
SELECT * FROM t1; SELECT * FROM t1;
a b vb a b vb
ROLLBACK; ROLLBACK;
SELECT * FROM t1;
a b vb
1 20190132 0000-00-00
CHECK TABLE t1; CHECK TABLE t1;
Table Op Msg_type Msg_text Table Op Msg_type Msg_text
test.t1 check status OK test.t1 check status OK
......
...@@ -278,6 +278,7 @@ DELETE FROM t1; ...@@ -278,6 +278,7 @@ DELETE FROM t1;
INSERT INTO t1 (a,b) VALUES(1,20190123); INSERT INTO t1 (a,b) VALUES(1,20190123);
SELECT * FROM t1; SELECT * FROM t1;
ROLLBACK; ROLLBACK;
SELECT * FROM t1; # MDEV-18366 FIXME: fix the crash and enable this
# SELECT * FROM t1;
CHECK TABLE t1; CHECK TABLE t1;
DROP TABLE t1; DROP 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