--TEST-- PDO_Firebird: Bug 72931 Insert returning fails on Firebird 3 --SKIPIF-- --FILE-- exec('create table tablea (id integer)'); $S = $C->prepare('insert into tablea (id) values (1) returning id'); $S->execute(); $D = $S->fetch(PDO::FETCH_NUM); echo $D[0]; unset($S); unset($C); ?> --CLEAN-- exec('drop table tablea'); ?> --EXPECT-- 1