summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/bug_60665.phpt
Commit message (Collapse)AuthorAgeFilesLines
* Replace dirname(__FILE__) by __DIR__ in testsFabien Villepinte2019-03-151-1/+1
|
* Compatibility with Firebird & Oracle select syntax.Dorin Marcoci2016-12-191-2/+6
|
* Fix #60665: call to empty() on NULL result using PDO::FETCH_LAZY returns falseChristoph M. Becker2016-08-131-0/+41
The has_property handler only checked whether a respective column name exists, but neither whether the column value is set, nor whether it is empty, respectively. We fix that to match the behavior of POD:FETCH_OBJ in particular and PHP in general.