File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/Symfony/Component/Messenger/Bridge/Doctrine/Transport Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 3232use Doctrine \DBAL \Schema \Synchronizer \SchemaSynchronizer ;
3333use Doctrine \DBAL \Schema \Table ;
3434use Doctrine \DBAL \Types \Types ;
35+ use Satag \DoctrineFirebirdDriver \Platforms \FirebirdPlatform ;
3536use Symfony \Component \Messenger \Exception \InvalidArgumentException ;
3637use Symfony \Component \Messenger \Exception \TransportException ;
3738use Symfony \Contracts \Service \ResetInterface ;
@@ -404,7 +405,9 @@ private function createQueryBuilder(string $alias = 'm'): QueryBuilder
404405
405406 $ alias .= '. ' ;
406407
407- if (!$ this ->driverConnection ->getDatabasePlatform () instanceof OraclePlatform) {
408+ if (!$ this ->driverConnection ->getDatabasePlatform () instanceof FirebirdPlatform
409+ && !$ this ->driverConnection ->getDatabasePlatform () instanceof OraclePlatform
410+ ) {
408411 return $ queryBuilder ->select ($ alias .'* ' );
409412 }
410413
You can’t perform that action at this time.
0 commit comments