Details
Description
The test innodb.import_update_stats that will be added in MDEV-13626 is failing on Valgrind, and on 10.5 on MSAN. The following patch would almost fix it:
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc
|
index 086f30e119e..33ac21a4a7e 100644
|
--- a/storage/innobase/handler/ha_innodb.cc
|
+++ b/storage/innobase/handler/ha_innodb.cc
|
@@ -14316,7 +14316,7 @@ ha_innobase::info_low(
|
DBUG_ASSERT(ib_table->get_ref_count() > 0);
|
|
if (!ib_table->is_readable()) {
|
- ib_table->stat_initialized = true;
|
+ goto func_exit;
|
}
|
|
if (flag & HA_STATUS_TIME) { |
However, this patch would make a number of other tests fail:
10.4 2447172afb5afed1687779e46eed217c38f89ebc with patch |
Failing test(s): encryption.innodb-bad-key-change3 innodb.innodb_bug14147491 innodb.innodb-wl5522-debug innodb_zip.wl5522_debug_zip
|
Attachments
Issue Links
- relates to
-
MDEV-13626 Merge InnoDB test cases from MySQL 5.7
- Closed