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;
|
VPackBuilder result;
|
||||||
result.openArray();
|
result.openArray();
|
||||||
for (auto const& it : keys) {
|
for (auto const& it : keys) {
|
||||||
TRI_ASSERT(!it.empty());
|
if (removeInternal && !it.empty() && it.at(0) == '_') {
|
||||||
if (removeInternal && it.at(0) == '_') {
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
result.add(VPackValue(it));
|
result.add(VPackValue(it));
|
||||||
|
|
Loading…
Reference in New Issue