Skip to content

Commit 0871a5d

Browse files
committed
Fixing "as" separator
1 parent a39c979 commit 0871a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QueryFactory/AbstractQueryFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ protected function getColumnsList(string $mainTable, array $additionalTablesFetc
189189
'tableGroup' => $tableGroups[$table],
190190
];
191191
$columnsList[] = $mysqlPlatform->quoteIdentifier($table).'.'.$mysqlPlatform->quoteIdentifier($columnName).' as '.
192-
$mysqlPlatform->quoteIdentifier($table.'____'.$columnName);
192+
$connection->quoteIdentifier($table.'____'.$columnName);
193193
}
194194
}
195195

0 commit comments

Comments
 (0)