summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-12-08 03:24:18 +0100
committerAnatol Belski <ab@php.net>2016-12-08 03:24:18 +0100
commitff6565462ede34f5b776ade1a8fb77c55347e9d3 (patch)
treec550df1bbcde864cf8cb88877c3bb2e9160468e0 /ext/pdo_firebird
parent73fb2192d29a8084b2424a1dfadab6d18c689f6a (diff)
downloadphp-git-ff6565462ede34f5b776ade1a8fb77c55347e9d3.tar.gz
git clean section
Diffstat (limited to 'ext/pdo_firebird')
-rw-r--r--ext/pdo_firebird/tests/bug_72931.phpt6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/pdo_firebird/tests/bug_72931.phpt b/ext/pdo_firebird/tests/bug_72931.phpt
index 10adf20ca7..ecbde6a109 100644
--- a/ext/pdo_firebird/tests/bug_72931.phpt
+++ b/ext/pdo_firebird/tests/bug_72931.phpt
@@ -14,5 +14,11 @@ echo $D[0][0];
unset($S);
unset($C);
?>
+--CLEAN--
+<?php
+require 'testdb.inc';
+$C = new PDO('firebird:dbname='.$test_base, $user, $password) or die;
+$C->exec('DROP table tablea');
+?>
--EXPECT--
1