From 866dd449db6903d0da7bef8320db88092bf2b035 Mon Sep 17 00:00:00 2001 From: Tomasz Grabiec Date: Tue, 24 Mar 2015 11:57:53 +0100 Subject: [PATCH] db: Remove unused methods --- database.hh | 2 -- 1 file changed, 2 deletions(-) diff --git a/database.hh b/database.hh index 91870fe6ee..933f6861e0 100644 --- a/database.hh +++ b/database.hh @@ -191,10 +191,8 @@ public: row& static_row() { return _static_row; } row& clustered_row(const clustering_key& key); row* find_row(const clustering_key& key); - row* find_row(schema_ptr schema, const clustering_key_prefix& key); rows_entry* find_entry(schema_ptr schema, const clustering_key_prefix& key); tombstone tombstone_for_row(schema_ptr schema, const clustering_key& key); - tombstone tombstone_for_row(schema_ptr schema, const clustering_key_prefix& key); friend std::ostream& operator<<(std::ostream& os, const mutation_partition& mp); boost::iterator_range range(const schema& schema, const query::range& r); };