Reduce execution time of IngestFileWithGlobalSeqnoRandomized (#4131)

Summary:
Make `ExternalSSTFileTest.IngestFileWithGlobalSeqnoRandomized` run faster.

`make format`
Pull Request resolved: https://github.com/facebook/rocksdb/pull/4131

Differential Revision: D8839952

Pulled By: riversand963

fbshipit-source-id: 4a7e842fde1cde4dc902e928a1cf511322578521
main
Yanqin Jin 6 years ago committed by Facebook Github Bot
parent 8581a93a6b
commit 21171615c1
  1. 2
      db/external_sst_file_test.cc

@ -1477,7 +1477,7 @@ TEST_F(ExternalSSTFileTest, IngestFileWithGlobalSeqnoRandomized) {
Random rnd(301);
std::map<std::string, std::string> true_data;
for (int i = 0; i < 2000; i++) {
for (int i = 0; i < 500; i++) {
std::vector<std::pair<std::string, std::string>> random_data;
for (int j = 0; j < 100; j++) {
std::string k;

Loading…
Cancel
Save