summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/tests/bug_72931.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_firebird/tests/bug_72931.phpt')
-rw-r--r--ext/pdo_firebird/tests/bug_72931.phpt3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_firebird/tests/bug_72931.phpt b/ext/pdo_firebird/tests/bug_72931.phpt
index 56270ba984..5e2e849ba4 100644
--- a/ext/pdo_firebird/tests/bug_72931.phpt
+++ b/ext/pdo_firebird/tests/bug_72931.phpt
@@ -6,8 +6,7 @@ PDO_Firebird: Bug 72931 Insert returning fails on Firebird 3
<?php
require 'testdb.inc';
-@$dbh->exec('drop table tablea');
-$dbh->exec('create table tablea (id integer)');
+$dbh->exec('recreate table tablea (id integer)');
$S = $dbh->prepare('insert into tablea (id) values (1) returning id');
$S->execute();
$D = $S->fetch(PDO::FETCH_NUM);