diff options
Diffstat (limited to 'lib/private/db/connection.php')
-rw-r--r-- | lib/private/db/connection.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/db/connection.php b/lib/private/db/connection.php index a961c84f372..6c4f518dfb5 100644 --- a/lib/private/db/connection.php +++ b/lib/private/db/connection.php @@ -284,7 +284,9 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection { $whereValues = array_merge($keys, $updatePreconditionValues); foreach ($whereValues as $name => $value) { $where->add($updateQb->expr()->eq( - $name, $updateQb->createNamedParameter($value, $this->getType($value)) + $name, + $updateQb->createNamedParameter($value, $this->getType($value)), + $this->getType($value) )); } $updateQb->where($where); |