Remove mysqli_close that prevented CLEAN from running properly

This commit is contained in:
Kamil Tekiela 2021-09-02 21:28:49 +01:00 committed by Nikita Popov
parent e16af8e84d
commit 400c6055b1

View File

@ -8,7 +8,4 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
}
mysqli_close($link);
?>
}