Remove unused method and clear up #includes
This commit is contained in:
parent
960857af41
commit
7574d3e2a8
@ -306,6 +306,4 @@ std::vector<std::pair<std::string, LabelId>> TextIndex::ListIndices() const {
|
||||
return ret;
|
||||
}
|
||||
|
||||
std::uint64_t TextIndex::ApproximateVertexCount(const std::string &index_name) const { return 10; }
|
||||
|
||||
} // namespace memgraph::storage
|
||||
|
@ -83,8 +83,6 @@ class TextIndex {
|
||||
void Rollback();
|
||||
|
||||
std::vector<std::pair<std::string, LabelId>> ListIndices() const;
|
||||
|
||||
std::uint64_t ApproximateVertexCount(const std::string &index_name) const;
|
||||
};
|
||||
|
||||
} // namespace memgraph::storage
|
||||
|
@ -15,8 +15,6 @@
|
||||
#include <tuple>
|
||||
#include <utility>
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include "query/exceptions.hpp"
|
||||
#include "storage/v2/disk/storage.hpp"
|
||||
#include "storage/v2/edge_accessor.hpp"
|
||||
@ -28,12 +26,13 @@
|
||||
#include "storage/v2/storage.hpp"
|
||||
#include "storage/v2/vertex_info_cache.hpp"
|
||||
#include "storage/v2/vertex_info_helpers.hpp"
|
||||
#include "text_search.hpp"
|
||||
#include "utils/atomic_memory_block.hpp"
|
||||
#include "utils/logging.hpp"
|
||||
#include "utils/memory_tracker.hpp"
|
||||
#include "utils/variant_helpers.hpp"
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
namespace memgraph::storage {
|
||||
|
||||
namespace detail {
|
||||
|
Loading…
Reference in New Issue
Block a user