--TEST-- Bug ##76452 (Crash while parsing blob data in firebird_fetch_blob) --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-- PDO::ERRMODE_EXCEPTION]); $query = $dbh->prepare("SELECT * FROM test76452"); $query->execute(); var_dump($query->fetch()); ?> --EXPECT-- array(4) { ["AAA"]=> string(4) "hihi" [0]=> string(4) "hihi" ["BBBB"]=> NULL [1]=> NULL }