summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/051.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/051.phpt')
-rw-r--r--ext/mysqli/tests/051.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/mysqli/tests/051.phpt b/ext/mysqli/tests/051.phpt
deleted file mode 100644
index 746597e925..0000000000
--- a/ext/mysqli/tests/051.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-free statement after close
---FILE--
-<?php
- include "connect.inc";
-
- /************************
- * free statement after close
- ************************/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- $stmt1 = mysqli_prepare($link, "SELECT CURRENT_USER()");
- mysqli_execute($stmt1);
-
- mysqli_close($link);
- mysqli_stmt_close($stmt1);
- printf("Ok\n");
-?>
---EXPECT--
-Ok