Skip to content

Commit

Permalink
WIP - fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
luciano-fiandesio committed Jan 7, 2025
1 parent 6604b5d commit 62c2237
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ private void appendCteClause(StringBuilder sql, CTEContext cteContext)
private void appendSelectClause(StringBuilder sql, EventQueryParams params, CTEContext cteContext)
{
List<String> selectCols = ListUtils.distinctUnion(
params.isAggregatedEnrollments() ? List.of("enrollment") : COLUMNS,
params.isAggregatedEnrollments() ? List.of("enrollment") : getStandardColumns(),
getSelectColumnsWithCTE(params, cteContext)
);

Expand Down

0 comments on commit 62c2237

Please sign in to comment.