summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/tests/bug_73087.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_firebird/tests/bug_73087.phpt')
-rw-r--r--ext/pdo_firebird/tests/bug_73087.phpt3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_firebird/tests/bug_73087.phpt b/ext/pdo_firebird/tests/bug_73087.phpt
index cd3d90137e..fa642ff5c2 100644
--- a/ext/pdo_firebird/tests/bug_73087.phpt
+++ b/ext/pdo_firebird/tests/bug_73087.phpt
@@ -6,8 +6,7 @@ PDO_Firebird: bug 73087 segfault binding blob parameter
<?php
require 'testdb.inc';
-@$dbh->exec('drop table atable');
-$dbh->exec('create table atable (id integer not null, content blob sub_type 1 segment size 80)');
+$dbh->exec('recreate table atable (id integer not null, content blob sub_type 1 segment size 80)');
$S = $dbh->prepare('insert into atable (id, content) values (:id, :content)');
for ($I = 1; $I < 10; $I++) {
$Params = [