From 8086e5e2946402a0a0ffe56195b3ab6dc02aa055 Mon Sep 17 00:00:00 2001 From: Peter Dillinger Date: Tue, 28 Apr 2020 21:35:24 -0700 Subject: [PATCH] Fix LITE build (#6770) Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/6770 Test Plan: make LITE=1 check Reviewed By: ajkr Differential Revision: D21296261 Pulled By: pdillinger fbshipit-source-id: b6075cc13a6d6db48617b7e0e9ebeea9364dfd9f --- db/db_bloom_filter_test.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/db_bloom_filter_test.cc b/db/db_bloom_filter_test.cc index 3b4813e4d..989ce7d76 100644 --- a/db/db_bloom_filter_test.cc +++ b/db/db_bloom_filter_test.cc @@ -1074,7 +1074,9 @@ TEST_P(DBBloomFilterTestVaryPrefixAndFormatVer, PartitionedMultiGet) { ASSERT_OK(Put(UKey(i), UKey(i))); } ASSERT_OK(Flush()); +#ifndef ROCKSDB_LITE ASSERT_EQ(TotalTableFiles(), 1); +#endif constexpr uint32_t Q = 29; // MultiGet In