History log of /PHP-8.2/ext/mysqli/tests/bug77935.phpt (Results 1 – 6 of 6)
Revision Date Author Comments
# a21edc52 31-Jul-2023 Kamil Tekiela

Remove unnecessary parentheses around language constructs in mysqli


# 62d393b1 04-Oct-2022 Christoph M. Becker

Remove support for libmysql-client from mysqli test suite

Since mysqli can no longer be built against libmysql-client, there is
no longer the need to distinguish.

While we're at

Remove support for libmysql-client from mysqli test suite

Since mysqli can no longer be built against libmysql-client, there is
no longer the need to distinguish.

While we're at it, we also drop the superfluous is_object() checks.

Closes GH-9652.

show more ...


# 970d659d 25-Jun-2021 Kamil Tekiela

Fix libmysql test cases (#7097)

Fixed test cases for: mysqli_stmt_execute_bind_libmysql, bug77935, fetch_column, and some others that failed on libmysql


# b5a14e6c 11-Jun-2021 Nikita Popov

Port skipif.inc files to EXTENSIONS


# 8573eb9e 05-Mar-2021 Dharman

Add CLEAN sections to mysqli and PDO mysql tests

Closes GH-6756.


# bc166844 16-Dec-2020 Nikita Popov

MySQLnd: Support cursors in store/get result

This fixes two related issues:

1. When a PS with cursor is used in store_result/get_result,
perform a COM_FETCH with maximum numb

MySQLnd: Support cursors in store/get result

This fixes two related issues:

1. When a PS with cursor is used in store_result/get_result,
perform a COM_FETCH with maximum number of rows rather than
silently switching to an unbuffered result set (in the case of
store_result) or erroring (in the case of get_result).
In the future, we might want to make get_result unbuffered for
PS with cursors, as using cursors with buffered result sets
doesn't really make sense. Unlike store_result, get_result
isn't very explicit about what kind of result set is desired.
2. If the client did not request a cursor, but the server reports
that a cursor exists, ignore this and treat the PS as if it
has no cursor (i.e. to not use COM_FETCH). It appears to be a
server side bug that a cursor used inside an SP will be reported
to the client, even though the client cannot use the cursor.

Fixes bug #64638, bug #72862, bug #77935.

Closes GH-6518.

show more ...