mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Move from directly referencing an aggregated structure to using a
pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
This commit is contained in:
parent
5e8bcbb08a
commit
845d8fa10c
26 changed files with 430 additions and 406 deletions
|
@ -32,7 +32,7 @@
|
|||
|
||||
#define mysqli_result_is_unbuffered(r) ((r)->unbuf)
|
||||
#define mysqli_result_is_unbuffered_and_not_everything_is_fetched(r) ((r)->unbuf && !(r)->unbuf->eof_reached)
|
||||
#define mysqli_server_status(c) (c)->upsert_status.server_status
|
||||
#define mysqli_server_status(c) mysqlnd_get_server_status((c))
|
||||
#define mysqli_stmt_get_id(s) ((s)->data->stmt_id)
|
||||
#define mysqli_stmt_warning_count(s) mysqlnd_stmt_warning_count((s))
|
||||
#define mysqli_stmt_server_status(s) mysqlnd_stmt_server_status((s))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue