From d86f9b9c3f7197b2816de5ebb77e981cba3447b6 Mon Sep 17 00:00:00 2001 From: Islam AbdelRahman Date: Mon, 9 May 2016 16:08:30 -0700 Subject: [PATCH] Fix lite build Summary: Fix lite build Test Plan: run under lite Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D57945 --- db/db_test2.cc | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/db/db_test2.cc b/db/db_test2.cc index 4e03e2091..8657c3036 100644 --- a/db/db_test2.cc +++ b/db/db_test2.cc @@ -800,22 +800,6 @@ TEST_F(DBTest2, PresetCompressionDict) { } } } -#endif // ROCKSDB_LITE - -TEST_F(DBTest2, FirstSnapshotTest) { - Options options; - options.write_buffer_size = 100000; // Small write buffer - options = CurrentOptions(options); - CreateAndReopenWithCF({"pikachu"}, options); - - // This snapshot will have sequence number 0 what is expected behaviour. - const Snapshot* s1 = db_->GetSnapshot(); - - Put(1, "k1", std::string(100000, 'x')); // Fill memtable - Put(1, "k2", std::string(100000, 'y')); // Trigger flush - - db_->ReleaseSnapshot(s1); -} class CompactionCompressionListener : public EventListener { public: @@ -911,6 +895,22 @@ TEST_F(DBTest2, CompressionOptions) { ASSERT_EQ(listener->max_level_checked, 6); } } +#endif // ROCKSDB_LITE + +TEST_F(DBTest2, FirstSnapshotTest) { + Options options; + options.write_buffer_size = 100000; // Small write buffer + options = CurrentOptions(options); + CreateAndReopenWithCF({"pikachu"}, options); + + // This snapshot will have sequence number 0 what is expected behaviour. + const Snapshot* s1 = db_->GetSnapshot(); + + Put(1, "k1", std::string(100000, 'x')); // Fill memtable + Put(1, "k2", std::string(100000, 'y')); // Trigger flush + + db_->ReleaseSnapshot(s1); +} class PinL0IndexAndFilterBlocksTest : public DBTestBase, public testing::WithParamInterface { -- GitLab