mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel
This commit is contained in:
commit
89b08bc39e
|
@ -273,3 +273,5 @@ And finally clean it up again:
|
|||
|
||||
|
||||
If this traversal is not powerful enough for your needs, so you cannot describe your conditions as AQL filter statements you might want to look at [manually crafted traverser](../Traversals/README.md).
|
||||
|
||||
[See here for more traversal examples](../AqlExamples/CombiningGraphTraversals.md).
|
||||
|
|
|
@ -66,6 +66,9 @@ namespace triagens {
|
|||
for (auto& it : _vertices) {
|
||||
TRI_FreeJson(TRI_UNKNOWN_MEM_ZONE, it.second);
|
||||
}
|
||||
for (auto& it : _edges) {
|
||||
TRI_FreeJson(TRI_UNKNOWN_MEM_ZONE, it.second);
|
||||
}
|
||||
}
|
||||
|
||||
void setStartVertex (VertexId const& v) override;
|
||||
|
|
Loading…
Reference in New Issue