Skip to content

Fix some MariaDB test failures #17004

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions ext/mysqli/tests/063.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ require_once('skipifconnectfailure.inc');

$mysql->close();
?>
--EXPECT--
--EXPECTF--
string(3) "foo"
Unknown column 'invalid' in 'field list'
Unknown column 'invalid' in '%r(SELECT|field list)%r'
2 changes: 1 addition & 1 deletion ext/mysqli/tests/bug71863.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ if (!mysqli_query($link, "DROP TABLE IF EXISTS test_bug_71863"))
mysqli_close($link);
?>
--EXPECTF--
%AUnknown column 'owner_id' in 'where clause'
%AUnknown column 'owner_id' in '%r(WHERE|where clause)%r'
4 changes: 2 additions & 2 deletions ext/mysqli/tests/mysqli_stmt_datatype_change.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if (!mysqli_query($link, "DROP TABLE IF EXISTS type_change"))

mysqli_close($link);
?>
--EXPECT--
--EXPECTF--
bool(true)
bool(true)
---- Row 1
Expand All @@ -80,7 +80,7 @@ NULL
ALTER
bool(true)
bool(false)
string(34) "Unknown column 'a' in 'field list'"
string(%d) "Unknown column 'a' in '%r(SELECT|field list)%r'"
---- Row 1
bool(false)
int(2)
Expand Down
Loading