summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/009.phpt
diff options
context:
space:
mode:
authorUlf Wendel <uw@php.net>2008-01-08 12:43:08 +0000
committerUlf Wendel <uw@php.net>2008-01-08 12:43:08 +0000
commit96c63a378e2889b1c1c92e1c0545a7565893c333 (patch)
treea326f2b4c4ca0b5a7d551c500703bcc4b649dd34 /ext/mysqli/tests/009.phpt
parentb93b48663d910f96d705757b7b94be181c2a422e (diff)
downloadphp-git-96c63a378e2889b1c1c92e1c0545a7565893c333.tar.gz
Looks more than it is. Its whitespace, adding error handling in a few places,
changing SQL statement formatting etc. No "real" changes.
Diffstat (limited to 'ext/mysqli/tests/009.phpt')
-rw-r--r--ext/mysqli/tests/009.phpt2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mysqli/tests/009.phpt b/ext/mysqli/tests/009.phpt
index e018d9302b..5a498953be 100644
--- a/ext/mysqli/tests/009.phpt
+++ b/ext/mysqli/tests/009.phpt
@@ -73,6 +73,8 @@ mysqli fetch bigint values (ok to fail with 4.1.x)
echo $c1, "\n", $c2, "\n";
mysqli_stmt_close($stmt);
+ mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch");
+ mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch_uint");
mysqli_close($link);
print "done!";
?>