Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Cannot Reproduce
-
10.1(EOL)
-
None
Description
http://buildbot.askmonty.org/buildbot/builders/kvm-fulltest2/builds/11476/steps/mtr_nm/logs/stdio
innodb.innodb_max_recordsize_64k 'xtradb' w3 [ fail ]
|
Test ended at 2018-02-03 14:09:55
|
|
CURRENT_TEST: innodb.innodb_max_recordsize_64k
|
--- /mnt/buildbot/build/mariadb-10.1.31/mysql-test/suite/innodb/r/innodb_max_recordsize_64k.result 2018-02-03 11:41:55.000000000 +0200
|
+++ /mnt/buildbot/build/mariadb-10.1.31/mysql-test/suite/innodb/r/innodb_max_recordsize_64k.reject 2018-02-03 14:09:55.000000000 +0200
|
@@ -539,10 +539,10 @@
|
test.t analyze status OK
|
SELECT stat_value FROM mysql.innodb_index_stats where database_name = 'test' and table_name= 't' and stat_name='n_leaf_pages';
|
stat_value
|
-4
|
+2
|
SELECT clustered_index_size from mysql.innodb_table_stats where database_name = 'test' and table_name= 't';
|
clustered_index_size
|
-5
|
+3
|
DROP TABLE t;
|
CREATE TABLE t(col BLOB) ENGINE=InnoDB ROW_FORMAT=REDUNDANT;
|
SHOW WARNINGS;
|
|
mysqltest: Result content mismatch
|
Attachments
Issue Links
- relates to
-
MDEV-7142 main.index_merge_innodb fails sporadically in buildbot with wrong result or timeout
-
- Closed
-
-
MDEV-10682 Race condition between ANALYZE TABLE and STATS_AUTO_RECALC
-
- Closed
-
elenst, would it be possible to narrow down the test to the relevant part (see below) and repeat it to establish how often it can fail?
The test result differs immediately after the test creates, populates and analyzes the first table named test.t.
Because the table creation and population only involves INSERT statements and no UPDATE or DELETE, the result should actually be deterministic, with the purge playing no role whatsoever. There are no secondary indexes, so change buffering should not kick in either.
This is the corresponding section of the test input:
SHOW WARNINGS;
Perhaps this intermittent failure to compute correct statistics could explain
MDEV-7142?Note: while the other statistics can be estimates, the number of pages should always be accurate, from btr_get_size().
In this table, we expet all 3 records to be stored in the root page, and 1+1+2 BLOB pages being referred to by the records. Somehow there appear to be 2 fewer BLOB pages than expected.