diff options
author | Ulf Wendel <uw@php.net> | 2009-10-15 20:46:08 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2009-10-15 20:46:08 +0000 |
commit | d8dc47d58f5a83b45d08cc2a91286a54bcb719e7 (patch) | |
tree | a9ff489a4e96c798a89b50f4cc51f50a3d7f63bb /ext/mysqli/mysqli_mysqlnd.h | |
parent | ab4670ee53b8ef48e0a7f012f3bc26b2297df6c2 (diff) | |
download | php-git-d8dc47d58f5a83b45d08cc2a91286a54bcb719e7.tar.gz |
Making mysqlnd emit no warnings when fetching pooled persistent connections that have timed out or are unusable for any other reason - bug #49761
Diffstat (limited to 'ext/mysqli/mysqli_mysqlnd.h')
-rw-r--r-- | ext/mysqli/mysqli_mysqlnd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mysqli/mysqli_mysqlnd.h b/ext/mysqli/mysqli_mysqlnd.h index 574d956737..b815dec632 100644 --- a/ext/mysqli/mysqli_mysqlnd.h +++ b/ext/mysqli/mysqli_mysqlnd.h @@ -39,6 +39,7 @@ #define mysqli_free_result(r, implicit) mysqlnd_free_result((r), (implicit)) #define mysqli_bg_store_result(r) mysqlnd_bg_store_result((r)) #define mysqli_async_query(c, q, l) mysqlnd_async_query((c), (q), (l)) +#define mysqli_change_user_silent(c, u, p, d) mysqlnd_change_user((c), (u), (p), (d), TRUE) #define HAVE_STMT_NEXT_RESULT |