From 44a9cbda17e1ec37e6937c55b1b28e7e464447d0 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Tue, 18 Feb 2014 11:22:16 -0800 Subject: [PATCH] Make GetPropertiesOfAllTables not virtual --- include/rocksdb/db.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rocksdb/db.h b/include/rocksdb/db.h index 82f69b158..4d2e0ac79 100644 --- a/include/rocksdb/db.h +++ b/include/rocksdb/db.h @@ -437,7 +437,7 @@ class DB { virtual Status GetPropertiesOfAllTables(ColumnFamilyHandle* column_family, TablePropertiesCollection* props) = 0; - virtual Status GetPropertiesOfAllTables(TablePropertiesCollection* props) { + Status GetPropertiesOfAllTables(TablePropertiesCollection* props) { return GetPropertiesOfAllTables(DefaultColumnFamily(), props); }