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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user