summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/041.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/041.phpt')
-rw-r--r--ext/mysqli/tests/041.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/mysqli/tests/041.phpt b/ext/mysqli/tests/041.phpt
deleted file mode 100644
index 6fb8ee7e3f..0000000000
--- a/ext/mysqli/tests/041.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-function test: mysqli_warning_count()
---FILE--
-<?php
-
- include "connect.inc";
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- mysqli_select_db($link, "test");
-
- mysqli_query($link, "DROP TABLE IF EXISTS test_warnings");
-
- mysqli_query($link, "CREATE TABLE test_warnings (a int not null");
-
- mysqli_query($link, "INSERT INTO test_warnings VALUES (1),(2),(NULL)");
- $num = mysqli_warning_count($link);
- var_dump($num);
-
- mysqli_close($link);
-?>
---EXPECT--
-int(1)