Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b225f86

Browse files
committed
Merge branch '5.4' into 6.3
* 5.4: run composer update for compatibility with PHPUnit versions shipping composer.lock add parameter types in query builder
2 parents 14df8d7 + 3a5ef7b commit b225f86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Transport/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public function get(): ?array
183183
if ($this->driverConnection->getDatabasePlatform() instanceof OraclePlatform) {
184184
$query = $this->createQueryBuilder('w')
185185
->where('w.id IN ('.str_replace('SELECT a.* FROM', 'SELECT a.id FROM', $sql).')')
186-
->setParameters($query->getParameters());
186+
->setParameters($query->getParameters(), $query->getParameterTypes());
187187

188188
if (method_exists(QueryBuilder::class, 'forUpdate')) {
189189
$query->forUpdate();

0 commit comments

Comments
 (0)