1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Add DROP TABLE to clean up after the test

This commit is contained in:
Kamil Tekiela
2023-08-01 22:28:18 +01:00
parent ab46d2012c
commit 66b359e4de

View File

@@ -17,6 +17,7 @@ $mysqli->query("INSERT INTO foo VALUES (9223372036854775807)");
var_dump($mysqli->insert_id);
$mysqli->query("INSERT INTO foo VALUES (0)");
var_dump($mysqli->insert_id);
$mysqli->query("DROP TABLE IF EXISTS foo");
?>
--EXPECT--
string(19) "9223372036854775807"