Skip to content

Commit

Permalink
dbeaver/dbeaver#36415 Add support for composite values to the groupin…
Browse files Browse the repository at this point in the history
…g panel for DBeaver (#3137)
  • Loading branch information
E1izabeth authored Dec 17, 2024
1 parent eada3fd commit 71e03c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ public String generateGroupByQuery(
resultsInfo.getDataContainer(),
getSqlDialectFromConnection(dataSource.getContainer()),
contextInfo.getProcessor().getSyntaxManager(),
columnsList,
columnsList.stream().map(s -> SQLGroupingAttribute.makeCustom(dataSource, s)).toList(),
functions == null ? List.of(SQLGroupingQueryGenerator.DEFAULT_FUNCTION) : functions, // backward compatibility
CommonUtils.getBoolean(showDuplicatesOnly, false));
return groupingQueryGenerator.generateGroupingQuery(resultsInfo.getQueryText());
Expand Down

0 comments on commit 71e03c7

Please sign in to comment.