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
This commit is contained in:
Daniel Black 2016-12-13 18:30:21 -08:00 committed by Facebook Github Bot
parent bfbcec2339
commit cfc34d7c4e

View File

@ -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;