mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
ORM alias improvements
This commit is contained in:
@@ -90,7 +90,7 @@ class PostgresqlQueryComposer extends BaseQueryComposer
|
||||
protected function quoteColumn(string $column): string
|
||||
{
|
||||
$list = explode('.', $column);
|
||||
$list = array_map(fn ($item) => '"' . $item . '"', $list);
|
||||
$list = array_map(fn ($item) => $this->quoteIdentifier($item), $list);
|
||||
|
||||
return implode('.', $list);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user