From abb9e703d22b640390ab611dacdcc58ca26e19ba Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Thu, 11 Jan 2018 12:59:30 +0100 Subject: MDEV-14690: Assertion `page_link == &fake_link' failed in pagecache_write_part Fix the call to correspond protocoll of pagecache call. Fix of misleading variables names. --- mysql-test/suite/maria/maria.result | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'mysql-test/suite/maria/maria.result') diff --git a/mysql-test/suite/maria/maria.result b/mysql-test/suite/maria/maria.result index 890f6bbfaf5..7f8badb78ae 100644 --- a/mysql-test/suite/maria/maria.result +++ b/mysql-test/suite/maria/maria.result @@ -2686,3 +2686,14 @@ select count(*) from t1; count(*) 13 drop table t1; +# +# MDEV-14690: Assertion `page_link == &fake_link' failed in +# pagecache_write_part +# +CREATE TABLE t1 (a CHAR(8), b CHAR(8), c CHAR(8) NOT NULL DEFAULT '', f FLOAT, KEY(f)) ENGINE=Aria; +INSERT INTO t1 (a) VALUES ('foo'); +DELETE FROM t1 WHERE c < 'bar'; +ALTER TABLE t1 DISABLE KEYS; +INSERT INTO t1 (b) VALUES (''); +ALTER TABLE t1 ENABLE KEYS; +DROP TABLE t1; -- cgit v1.2.1