Version: all
Bug Description
When count(column) is used on selection group and having conditions are ignored
Steps To Reproduce
$selection->group('column1')->having('SUM(column2) > 0')->count('column1')
Expected Behavior
Return only rows where having conditions is met instead or all rows.
Possible Solution
Also copy group and having parameters in importConditions of SqlBuilder
|
public function importConditions(self $builder): void |
Or is there reason why it is not copied?
Version: all
Bug Description
When
count(column)is used on selectiongroupandhavingconditions are ignoredSteps To Reproduce
Expected Behavior
Return only rows where having conditions is met instead or all rows.
Possible Solution
Also copy group and having parameters in
importConditionsofSqlBuilderdatabase/src/Database/Table/SqlBuilder.php
Line 239 in f0e3796
Or is there reason why it is not copied?