forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-14062: [Format] Initial arrow-internal specification of compute IR
See also apache#10856 Differing design decisions from the above: - Don't special case for any `Expression`s or `Relation`s. All array functions and relations are identified by name, which may include a namespace for differentiating between extenders. - Freely extensible without recompilation of flatbuffers (with the cost of being a less "pure" flatbuffers format since bytes blobs are used liberally). - The root type is a Plan rather than a Relation- instead of expressing a value it is a specification of a side effect which includes the destination for output rows. Closes apache#10934 from bkietz/compute-ir Lead-authored-by: Benjamin Kietzman <[email protected]> Co-authored-by: Phillip Cloud <[email protected]> Signed-off-by: Phillip Cloud <[email protected]>
- Loading branch information
Showing
19 changed files
with
6,701 additions
and
62 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*_generated* | ||
*.grpc.fb.* | ||
*parquet_constants.* | ||
*parquet_types.* | ||
*windows_compatibility.h | ||
|
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.