8000 Bug fix/dont use indexes in progress by jsteemann · Pull Request #10432 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Bug fix/dont use indexes in progress #10432

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 14, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
address review comments
  • Loading branch information
jsteemann committed Nov 14, 2019
commit aa2df9a054cd0ef5473b70579191399028a228a6
2 changes: 1 addition & 1 deletion arangod/RestHandler/RestIndexHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ RestStatus RestIndexHandler::getSelectivityEstimates() {
builder.add(StaticStrings::Code, VPackValue(static_cast<int>(rest::ResponseCode::OK)));
builder.add("indexes", VPackValue(VPackValueType::Object));
for (std::shared_ptr<Index> idx : idxs) {
if (idx->inProgress()) {
if (idx->inProgress() || idx->isHidden()) {
continue;
}
std::string name = coll->name();
Expand Down
0