8000 Cleanup following #10341 by goedderz · Pull Request #10450 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Cleanup following #10341 #10450

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

Closed
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
Clarified a comment
  • Loading branch information
goedderz committed Nov 20, 2019
commit 3862db8195d0b5793b9f1465dd4c21c4d51e18e1
4 changes: 3 additions & 1 deletion arangod/Aql/UnsortedGatherExecutor.h
7AA8
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ class SharedAqlItemBlockPtr;
/**
* @brief Produces all rows from its dependencies, which may be more than one,
* in some unspecified order. It is, purposefully, strictly synchronous, and
* always waits for an answer before requesting the next row(s).
* always waits for an answer before requesting the next row(s). This is as
* opposed to the ParallelUnsortedGather, which already starts fetching the next
* dependenci(es) while waiting for an answer.
*
* The actual implementation fetches all available rows from the first
* dependency, then from the second, and so forth. But that is not guaranteed.
Expand Down
0