mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fix DataQuery::exists() not working correctly
Fixes `DataQuery::exists()` not working correctly in some cases as discussed in #9809
This commit is contained in:
parent
d13d3a1134
commit
d1cca0f3fb
@ -485,7 +485,7 @@ class DataQuery
|
||||
$result = reset($row);
|
||||
|
||||
// Checking for 't' supports PostgreSQL before silverstripe/postgresql@2.2
|
||||
return $result === true || $result === 1 || $result === 't';
|
||||
return $result === true || $result === 1 || $result === '1' || $result === 't';
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user