diff options
author | Andrey Hristov <andrey@php.net> | 2009-08-27 13:16:39 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-08-27 13:16:39 +0000 |
commit | 67c7a37d9bcc18a78bb9dcbdea8ff742c820be82 (patch) | |
tree | f17f186e7e3f27d72686bfeca670c089293bbfc8 /ext/mysqlnd/mysqlnd_statistics.c | |
parent | 43d33e8a995d839f236bd0c36a249ec1a2044da9 (diff) | |
download | php-git-67c7a37d9bcc18a78bb9dcbdea8ff742c820be82.tar.gz |
Fixed bug #49027 (mysqli_options() doesn't work when using mysqlnd)
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 7e6ea55060..a246bdfcf6 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -151,7 +151,9 @@ const MYSQLND_STRING mysqlnd_stats_values_names[STAT_LAST] = { STR_W_LEN("proto_binary_fetched_enum") }, { STR_W_LEN("proto_binary_fetched_set") }, { STR_W_LEN("proto_binary_fetched_geometry") }, - { STR_W_LEN("proto_binary_fetched_other") } + { STR_W_LEN("proto_binary_fetched_other") }, + { STR_W_LEN("init_command_executed_count") }, + { STR_W_LEN("init_command_failed_count") } }; /* }}} */ |