mirror of https://gitee.com/bigwinds/arangodb
using sorted now (#6424)
This commit is contained in:
parent
58027b1ca8
commit
bf3a608ae9
|
@ -167,7 +167,7 @@ void Graph::insertOrphanCollections(VPackSlice const arr) {
|
|||
}
|
||||
}
|
||||
|
||||
std::unordered_set<std::string> const& Graph::vertexCollections() const {
|
||||
std::set<std::string> const& Graph::vertexCollections() const {
|
||||
return _vertexColls;
|
||||
}
|
||||
|
||||
|
|
|
@ -139,7 +139,7 @@ class Graph {
|
|||
|
||||
public:
|
||||
/// @brief get the cids of all vertexCollections
|
||||
std::unordered_set<std::string> const& vertexCollections() const;
|
||||
std::set<std::string> const& vertexCollections() const;
|
||||
|
||||
/// @brief get the cids of all orphanCollections
|
||||
std::set<std::string> const& orphanCollections() const;
|
||||
|
@ -210,7 +210,7 @@ class Graph {
|
|||
/// @brief adds one edge definition. Returns an error if the edgeDefinition
|
||||
/// is already added to this graph.
|
||||
ResultT<EdgeDefinition const*> addEdgeDefinition(
|
||||
EdgeDefinition const& edgeDefinition);
|
||||
EdgeDefinition const& edgeDefinition);
|
||||
|
||||
/// @brief removes one edge definition. Returns an error if the edgeDefinition
|
||||
/// is not included in this graph.
|
||||
|
@ -263,7 +263,7 @@ class Graph {
|
|||
|
||||
/// @brief the names of all vertexCollections
|
||||
/// This includes orphans.
|
||||
std::unordered_set<std::string> _vertexColls;
|
||||
std::set<std::string> _vertexColls;
|
||||
|
||||
/// @brief the names of all orphanCollections
|
||||
std::set<std::string> _orphanColls;
|
||||
|
|
Loading…
Reference in New Issue