Remove leftover old storage types

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2635
This commit is contained in:
Matej Ferencevic 2020-01-23 14:41:27 +01:00
parent 98dc7e2849
commit a1fa7de115

View File

@ -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<std::string> &labels,
const std::map<std::string, storage::PropertyValue> &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<std::string, storage::PropertyValue> &props,
bool add_property_id = true) {
CHECK(dba);