From a1fa7de115600b9e2b2b3c12b9284d5ca8396b94 Mon Sep 17 00:00:00 2001 From: Matej Ferencevic Date: Thu, 23 Jan 2020 14:41:27 +0100 Subject: [PATCH] Remove leftover old storage types Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D2635 --- tests/unit/query_dump.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/unit/query_dump.cpp b/tests/unit/query_dump.cpp index b9c743606..c09c7e281 100644 --- a/tests/unit/query_dump.cpp +++ b/tests/unit/query_dump.cpp @@ -192,7 +192,7 @@ auto Execute(storage::Storage *db, const std::string &query) { return stream; } -VertexAccessor CreateVertex( +storage::VertexAccessor CreateVertex( storage::Storage::Accessor *dba, const std::vector &labels, const std::map &props, bool add_property_id = true) { @@ -214,9 +214,9 @@ VertexAccessor CreateVertex( return vertex; } -EdgeAccessor CreateEdge( - storage::Storage::Accessor *dba, VertexAccessor *from, VertexAccessor *to, - const std::string &edge_type_name, +storage::EdgeAccessor CreateEdge( + storage::Storage::Accessor *dba, storage::VertexAccessor *from, + storage::VertexAccessor *to, const std::string &edge_type_name, const std::map &props, bool add_property_id = true) { CHECK(dba);