forked from pixie-io/pixie
-
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.
[carnot] Output column per UDA in a partial aggregate (pixie-io#1442)
Summary: Prior to this change, the compiler would output a single column called `serialized_expressions` for any partial agg. This isn't particularly convenient for the execution side. Instead, the compiler will now output a column per UDA involved in the agg node. For example, if you have an agg node that has a `min` and `max` output the partial agg will now output two columns (plus any group columns) called `serialized_min` and `serialized_max`, where before it would output an unspecified `serialized_expressions` column. Relevant Issues: pixie-io#1440 Type of change: /kind cleanup Test Plan: Modified existing tests to test the new behaviour. Also tested as part of broader partial aggregate changes. Signed-off-by: James Bartlett <jamesbartlett@pixielabs.ai>
- Loading branch information
1 parent
a414a78
commit 495311c
Showing
7 changed files
with
34 additions
and
27 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
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