Skip to content

Commit 5bfe2e8

Browse files
committed
force aggregation names to be lowercase always to be compatible with case-insensitive DBs
1 parent fc2292f commit 5bfe2e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dba/Aggregation.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function __construct($column, $function, $overrideFactory = null) {
2424
}
2525

2626
function getName() {
27-
return strtolower($this->function) . "_" . $this->column;
27+
return strtolower($this->function) . "_" . strtolower($this->column);
2828
}
2929

3030
function getQueryString(AbstractModelFactory $factory, bool $includeTable = false) {

0 commit comments

Comments
 (0)