From 0729b287e9379a3d66f91e5522126c9e512344a1 Mon Sep 17 00:00:00 2001 From: Jay Zhuang Date: Tue, 17 Aug 2021 09:04:09 -0700 Subject: [PATCH] Exclude property kLiveSstFilesSizeAtTemperature from stress_test (#8668) Summary: Just like other per_level properties. Pull Request resolved: https://github.com/facebook/rocksdb/pull/8668 Test Plan: stress_test Reviewed By: zhichao-cao Differential Revision: D30360967 Pulled By: jay-zhuang fbshipit-source-id: 70da2557b95c55e8081b04ebf1a909a0fe69488f --- db_stress_tool/db_stress_test_base.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/db_stress_tool/db_stress_test_base.cc b/db_stress_tool/db_stress_test_base.cc index 9d9320dde..62f007c1e 100644 --- a/db_stress_tool/db_stress_test_base.cc +++ b/db_stress_tool/db_stress_test_base.cc @@ -1743,6 +1743,9 @@ void StressTest::TestGetProperty(ThreadState* thread) const { std::unordered_set unknownPropertyNames = { DB::Properties::kEstimateOldestKeyTime, DB::Properties::kOptionsStatistics, + DB::Properties:: + kLiveSstFilesSizeAtTemperature, // similar to levelPropertyNames, it + // requires a number suffix }; unknownPropertyNames.insert(levelPropertyNames.begin(), levelPropertyNames.end());