Skip to content

Commit

Permalink
修复listagg wthin group语句转换错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Alt-er authored and lizongbo committed May 22, 2024
1 parent a340e0b commit a8d20a2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,10 @@ public SQLAggregateExpr clone() {
x.setOrderBy(orderBy.clone());
}

// 修复listagg wthin group语句转换错误的问题
// https://github.com/alibaba/druid/issues/5930
x.setWithinGroup(withinGroup);

x.ignoreNulls = ignoreNulls;

if (attributes != null) {
Expand Down

0 comments on commit a8d20a2

Please sign in to comment.