diff --git a/db/db_test2.cc b/db/db_test2.cc index 4e03e20916041053317166b7a4ccf644b1162137..8657c30364017dd30dcc19247e773b6e183c72d1 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 {