Make PropertyValue constructors explicit

Summary: Depends on D2332

Reviewers: ipaljak, mferencevic

Reviewed By: ipaljak

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2333
This commit is contained in:
Teon Banek
2019-08-28 13:10:27 +02:00
parent d3b141f3ba
commit ed802073f6
28 changed files with 320 additions and 249 deletions

View File

@@ -99,7 +99,7 @@ static auto CreateIndexedVertices(int index_count, int vertex_count,
for (int index = 0; index < index_count; ++index) {
auto vertex = dba.InsertVertex();
vertex.add_label(label);
vertex.PropsSet(prop, index);
vertex.PropsSet(prop, PropertyValue(index));
}
}
dba.Commit();