mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into devel
This commit is contained in:
commit
a464347911
|
@ -1430,9 +1430,9 @@ arangodb::aql::AstNode* MMFilesSkiplistIndex::specializeCondition(
|
||||||
}
|
}
|
||||||
|
|
||||||
std::sort(nodes.begin(), nodes.end(),
|
std::sort(nodes.begin(), nodes.end(),
|
||||||
[](arangodb::aql::AstNode const* lhs,
|
[this](arangodb::aql::AstNode const* lhs,
|
||||||
arangodb::aql::AstNode const* rhs) -> bool {
|
arangodb::aql::AstNode const* rhs) -> bool {
|
||||||
return Index::sortWeight(lhs) < Index::sortWeight(rhs);
|
return this->sortWeight(lhs) < this->sortWeight(rhs);
|
||||||
});
|
});
|
||||||
|
|
||||||
lastContainsEquality = containsEquality;
|
lastContainsEquality = containsEquality;
|
||||||
|
|
Loading…
Reference in New Issue