-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A pipelined materializing query executor
Fully evaluates each operator before evaluating downstream ones. This is in contrast to a tuple at a time iterator, where each row is fully processed by all operators, before processing the next row. It is called "materializing" because each operator materializes its output. In practice however, non-blocking operators will be pipelined, so as not to perform unnecessary materialization.
- Loading branch information
1 parent
ea05e10
commit cc4f397
Showing
5 changed files
with
705 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.