10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a30c9b commit 38a4125Copy full SHA for 38a4125
src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/Connection.php
@@ -181,7 +181,8 @@ public function get(): ?array
181
// Wrap the rownum query in a sub-query to allow writelocks without ORA-02014 error
182
if ($this->driverConnection->getDatabasePlatform() instanceof OraclePlatform) {
183
$query = $this->createQueryBuilder('w')
184
- ->where('w.id IN ('.str_replace('SELECT a.* FROM', 'SELECT a.id FROM', $sql).')');
+ ->where('w.id IN ('.str_replace('SELECT a.* FROM', 'SELECT a.id FROM', $sql).')')
185
+ ->setParameters($query->getParameters());
186
187
if (method_exists(QueryBuilder::class, 'forUpdate')) {
188
$query->forUpdate();
0 commit comments