From 00464a3140ea88e9e3575407cae14259aa779b8c Mon Sep 17 00:00:00 2001 From: Yi Wu Date: Mon, 17 Jul 2017 14:51:19 -0700 Subject: [PATCH] Fix column_family_test with LITE build Summary: Fix column_family_test with LITE build. I need this patch to fix 5.6 branch. Closes https://github.com/facebook/rocksdb/pull/2597 Differential Revision: D5437171 Pulled By: yiwu-arbug fbshipit-source-id: 88b9dc5925a6b47af10c1b41bc5b07c4251a84b5 --- db/column_family_test.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/column_family_test.cc b/db/column_family_test.cc index 0d5f2dcf2..88786d469 100644 --- a/db/column_family_test.cc +++ b/db/column_family_test.cc @@ -521,6 +521,7 @@ TEST_F(ColumnFamilyTest, DontReuseColumnFamilyID) { } } +#ifndef ROCKSDB_LITE TEST_F(ColumnFamilyTest, CreateCFRaceWithGetAggProperty) { Open(); @@ -542,6 +543,7 @@ TEST_F(ColumnFamilyTest, CreateCFRaceWithGetAggProperty) { rocksdb::SyncPoint::GetInstance()->DisableProcessing(); } +#endif // !ROCKSDB_LITE class FlushEmptyCFTestWithParam : public ColumnFamilyTest, public testing::WithParamInterface {