--TEST-- PDO_Firebird: Bug #76488 Memory leak when fetching a BLOB field --EXTENSIONS-- pdo_firebird --SKIPIF-- --XLEAK-- A bug in firebird causes a memory leak when calling `isc_attach_database()`. See https://github.com/FirebirdSQL/firebird/issues/7849 --FILE-- prepare($sql); $sth->execute(); $rows = $sth->fetchAll(); unset($rows); unset($sth); } unset($dbh); echo "OK"; ?> --EXPECT-- OK