summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/tests/bug_74462.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_firebird/tests/bug_74462.phpt')
-rw-r--r--ext/pdo_firebird/tests/bug_74462.phpt3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_firebird/tests/bug_74462.phpt b/ext/pdo_firebird/tests/bug_74462.phpt
index fe97a1fc19..913b1b89db 100644
--- a/ext/pdo_firebird/tests/bug_74462.phpt
+++ b/ext/pdo_firebird/tests/bug_74462.phpt
@@ -6,8 +6,7 @@ PDO_Firebird: Bug #74462 Returns only NULLs for boolean fields
<?php
require 'testdb.inc';
-@$dbh->exec('drop table atable');
-$dbh->exec('create table atable (id integer not null, abool boolean)');
+$dbh->exec('recreate table atable (id integer not null, abool boolean)');
$dbh->exec('insert into atable (id, abool) values (1, true)');
$dbh->exec('insert into atable (id, abool) values (2, false)');
$dbh->exec('insert into atable (id, abool) values (3, null)');