Fix "Invalid fetch style: 12" on Oracle

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/24049/head
Joas Schilling 4 years ago
parent 48c2f6d5a0
commit fcef3c0e8a
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA

@ -110,10 +110,13 @@ class CustomPropertiesBackendTest extends TestCase {
->where($query->expr()->eq('userid', $query->createNamedParameter($user)))
->where($query->expr()->eq('propertypath', $query->createNamedParameter($this->formatPath($path))));
$result = $query->execute();
$data = $result->fetchAll(\PDO::FETCH_KEY_PAIR);
$data = [];
while ($row = $result->fetch()) {
$data[$row['propertyname']] = $row['propertyvalue'];
}
$result->closeCursor();
return $data;
}

Loading…
Cancel
Save