mirror of https://gitee.com/bigwinds/arangodb
Merge remote-tracking branch 'origin/devel' into feature/ldap-auth
This commit is contained in:
commit
6f4d94257c
|
@ -1544,8 +1544,7 @@ AqlValue Functions::Attributes(arangodb::aql::Query* query,
|
|||
VPackBuilder result;
|
||||
result.openArray();
|
||||
for (auto const& it : keys) {
|
||||
TRI_ASSERT(!it.empty());
|
||||
if (removeInternal && it.at(0) == '_') {
|
||||
if (removeInternal && !it.empty() && it.at(0) == '_') {
|
||||
continue;
|
||||
}
|
||||
result.add(VPackValue(it));
|
||||
|
|
Loading…
Reference in New Issue