Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2bce0ad

Browse files
committed
Remove surplus trailing semicolon
Author: Richard Guo Discussion: https://postgr.es/m/CAMbWs4-qjotfa7G=5PEOw4LDDDX58MmTwDdpdoU3Quse_BKv1Q@mail.gmail.com
1 parent 5715304 commit 2bce0ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/optimizer/plan/planner.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ grouping_planner(PlannerInfo *root, double tuple_fraction)
14181418
else if (parse->groupClause)
14191419
{
14201420
/* Preprocess regular GROUP BY clause, if any */
1421-
root->processed_groupClause = list_copy(parse->groupClause);;
1421+
root->processed_groupClause = list_copy(parse->groupClause);
14221422
/* Remove any redundant GROUP BY columns */
14231423
remove_useless_groupby_columns(root);
14241424
}

0 commit comments

Comments
 (0)