From 33c86d677fbdf3fc3270f0ed2f13ae25cd6be1e5 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Sun, 1 Jan 2017 11:05:55 -0800 Subject: [PATCH] Fix backupable db test Summary: #1733 started using SizeFileBytes(), so our dummy log file implementation should stop asserting that this function isn't called. Closes https://github.com/facebook/rocksdb/pull/1740 Differential Revision: D4376055 Pulled By: ajkr fbshipit-source-id: 2854d89 --- utilities/backupable/backupable_db_test.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/utilities/backupable/backupable_db_test.cc b/utilities/backupable/backupable_db_test.cc index 8d4468f76..419570dd5 100644 --- a/utilities/backupable/backupable_db_test.cc +++ b/utilities/backupable/backupable_db_test.cc @@ -112,8 +112,6 @@ class DummyDB : public StackableDB { } virtual uint64_t SizeFileBytes() const override { - // backupabledb should not need this method - EXPECT_TRUE(false); return 0; }