From cfc34d7c4e8e1539b288296083b826df154dd314 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Tue, 13 Dec 2016 18:30:21 -0800 Subject: [PATCH] Missing break in case in DBTestBase::CurrentOptions Summary: Found by gcc-7 compile error. This appeared to be a fault as these options seems too different. Closes https://github.com/facebook/rocksdb/pull/1667 Differential Revision: D4324174 Pulled By: yiwu-arbug fbshipit-source-id: 0f65383 --- db/db_test_util.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/db/db_test_util.cc b/db/db_test_util.cc index 5508d6a13..080a60f0a 100644 --- a/db/db_test_util.cc +++ b/db/db_test_util.cc @@ -307,6 +307,7 @@ Options DBTestBase::CurrentOptions( break; case kManifestFileSize: options.max_manifest_file_size = 50; // 50 bytes + break; case kPerfOptions: options.soft_rate_limit = 2.0; options.delayed_write_rate = 8 * 1024 * 1024;