26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
From 5729cb28f7e332adbcb8cfc4931af0944d3ff71d Mon Sep 17 00:00:00 2001
|
|
From: lingsheng <lingsheng@huawei.com>
|
|
Date: Fri, 19 Mar 2021 22:47:55 +0800
|
|
Subject: [PATCH] fix innodb.innodb fail on aarch64
|
|
|
|
---
|
|
mysql-test/suite/innodb/t/innodb.test | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/mysql-test/suite/innodb/t/innodb.test b/mysql-test/suite/innodb/t/innodb.test
|
|
index 679d251d..7e4c0ee5 100644
|
|
--- a/mysql-test/suite/innodb/t/innodb.test
|
|
+++ b/mysql-test/suite/innodb/t/innodb.test
|
|
@@ -1333,7 +1333,7 @@ drop table t1;
|
|
# Test for testable InnoDB status variables. This test
|
|
# uses previous ones(pages_created, rows_deleted, ...).
|
|
--disable_warnings
|
|
---replace_result 1535 {checked_valid} 1536 {checked_valid} 3071 {checked_valid} 3072 {checked_valid} 6144 {checked_valid}
|
|
+--replace_result 1535 {checked_valid} 1536 {checked_valid} 3071 {checked_valid} 3072 {checked_valid} 6144 {checked_valid} 1539 {checked_valid}
|
|
SELECT variable_value FROM information_schema.global_status WHERE LOWER(variable_name) = 'innodb_buffer_pool_pages_total';
|
|
--replace_result 4096 {checked_valid} 8192 {checked_valid} 16384 {checked_valid}
|
|
SELECT variable_value FROM information_schema.global_status WHERE LOWER(variable_name) = 'innodb_page_size';
|
|
--
|
|
2.23.0
|
|
|