Browse Source

Comment out the statement that triggers MDEV-18366

pull/1142/head
Marko Mäkelä 7 years ago
parent
commit
7930ab7e33
  1. 3
      mysql-test/suite/gcol/r/innodb_virtual_index.result
  2. 3
      mysql-test/suite/gcol/t/innodb_virtual_index.test

3
mysql-test/suite/gcol/r/innodb_virtual_index.result

@ -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

3
mysql-test/suite/gcol/t/innodb_virtual_index.test

@ -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;
Loading…
Cancel
Save