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