10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922a6ed commit 2ed3a30Copy full SHA for 2ed3a30
arangod/Aql/IndexExecutor.cpp
@@ -397,7 +397,8 @@ IndexExecutor::CursorReader::CursorReader(
397
: infos.isLateMaterialized() ? Type::LateMaterialized
398
: (!infos.getProduceResult() && !infos.getFilter()) ? Type::NoResult
399
: (infos.getProjections().usesCoveringIndex(index) &&
400
- infos.getFilterProjections().usesCoveringIndex(index))
+ (infos.getFilterProjections().usesCoveringIndex(index) ||
401
+ infos.getFilterProjections().empty()))
402
? Type::Covering
403
: infos.getFilterProjections().usesCoveringIndex(index)
404
? Type::CoveringFilterOnly
0 commit comments