Skip to content

Commit 2ce28a7

Browse files
committed
change Aggregate By to Group By
1 parent 3f911b2 commit 2ce28a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark-ui/src/components/SqlFlow/StageNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ export const StageNode: FC<{
443443
) {
444444
addTruncatedCodeTooltipMultiline(
445445
dataTable,
446-
parsedPlan.plan.functions.length === 0 ? "Distinct By" : "Aggregate By",
446+
parsedPlan.plan.functions.length === 0 ? "Distinct By" : "Group By",
447447
parsedPlan.plan.keys,
448448
);
449449
}

0 commit comments

Comments
 (0)