Till Westmann has submitted this change and it was merged. ( https://asterix-gerrit.ics.uci.edu/3384 )
Change subject: [NO ISSUE] show aggregate functions in JSON plan ...................................................................... [NO ISSUE] show aggregate functions in JSON plan - user model changes: more information in JSON plan - storage format changes: no - interface changes: no Change-Id: Ie4ba74d8455844e3913a4d4b5e2761b5ed23028b Reviewed-on: https://asterix-gerrit.ics.uci.edu/3384 Reviewed-by: Murtadha Hubail <[email protected]> Integration-Tests: Murtadha Hubail <[email protected]> Tested-by: Murtadha Hubail <[email protected]> --- M hyracks-fullstack/algebricks/algebricks-core/src/main/java/org/apache/hyracks/algebricks/core/algebra/prettyprint/LogicalOperatorPrettyPrintVisitorJson.java 1 file changed, 4 insertions(+), 0 deletions(-) Approvals: Murtadha Hubail: Looks good to me, approved; Verified; Verified diff --git a/hyracks-fullstack/algebricks/algebricks-core/src/main/java/org/apache/hyracks/algebricks/core/algebra/prettyprint/LogicalOperatorPrettyPrintVisitorJson.java b/hyracks-fullstack/algebricks/algebricks-core/src/main/java/org/apache/hyracks/algebricks/core/algebra/prettyprint/LogicalOperatorPrettyPrintVisitorJson.java index e56a8bd..f4e8003 100644 --- a/hyracks-fullstack/algebricks/algebricks-core/src/main/java/org/apache/hyracks/algebricks/core/algebra/prettyprint/LogicalOperatorPrettyPrintVisitorJson.java +++ b/hyracks-fullstack/algebricks/algebricks-core/src/main/java/org/apache/hyracks/algebricks/core/algebra/prettyprint/LogicalOperatorPrettyPrintVisitorJson.java @@ -171,6 +171,10 @@ @Override public Void visitAggregateOperator(AggregateOperator op, Integer indent) throws AlgebricksException { addIndent(indent).append("\"operator\": \"aggregate\""); + if (!op.getExpressions().isEmpty()) { + addIndent(0).append(",\n"); + pprintExprList(op.getExpressions(), indent); + } variablePrintHelper(op.getVariables(), indent); return null; } -- To view, visit https://asterix-gerrit.ics.uci.edu/3384 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-MessageType: merged Gerrit-Change-Id: Ie4ba74d8455844e3913a4d4b5e2761b5ed23028b Gerrit-Change-Number: 3384 Gerrit-PatchSet: 4 Gerrit-Owner: Till Westmann <[email protected]> Gerrit-Reviewer: Anon. E. Moose (1000171) Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Murtadha Hubail <[email protected]> Gerrit-Reviewer: Till Westmann <[email protected]>
