Make GetPropertiesOfAllTables not virtual

main
Igor Canadi 11 years ago
parent 6aef661230
commit 44a9cbda17
  1. 2
      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);
}

Loading…
Cancel
Save