-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support new aggregate logic introduced in Substrait 0.9.0 (#39)
BREAKING CHANGE: the grouping set index column for aggregates is now no longer generated if there are less than two grouping sets, as per the changes made in Substrait 0.9.0
- Loading branch information
1 parent
5ae3f8b
commit ddc1fd9
Showing
11 changed files
with
36 additions
and
47 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
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 +1 @@ | ||
0.8.0 | ||
0.10.0 |
Submodule substrait
updated
15 files
+5 −0 | .pre-commit-config.yaml | |
+54 −0 | CHANGELOG.md | |
+1 −1 | CONTRIBUTING.md | |
+445 −9 | extensions/functions_arithmetic.yaml | |
+9 −0 | extensions/functions_boolean.yaml | |
+0 −11 | extensions/functions_cast.yaml | |
+34 −0 | extensions/functions_comparison.yaml | |
+2 −2 | extensions/functions_datetime.yaml | |
+106 −0 | extensions/functions_logarithmic.yaml | |
+23 −0 | extensions/functions_rounding.yaml | |
+242 −2 | extensions/functions_string.yaml | |
+289 −15 | proto/substrait/algebra.proto | |
+6 −6 | site/docs/expressions/aggregate_functions.md | |
+93 −16 | site/docs/relations/logical_relations.md | |
+7 −2 | text/simple_extensions_schema.yaml |
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
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
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
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