Skip to content

ext/mysqli: Drop table at beginning for mysqli_fetch_all_data_types_variation.phpt #18455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ require_once dirname(__DIR__) . "/test_setup/test_helpers.inc";

$link = default_mysqli_connect();

try {
mysqli_query($link, "DROP TABLE test_mysqli_fetch_all_data_types_variation");
} catch (mysqli_sql_exception $e) {
// harmless, to avoid table already existing if the test gets wedged and then done again with persistent DB instance
}

function func_mysqli_fetch_all(
mysqli $link,
string $engine,
Expand Down
Loading