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 | 149914f6444318b938b1182f683bf4a2765a905e (patch) | |
tree | 7febf58566e743a7d38c6304c9896a04db08f2b5 /ext/mysqlnd/mysqlnd_statistics.c | |
parent | 2e92372322b91116dedc979fab4f0b67a1448b6e (diff) | |
download | php-git-149914f6444318b938b1182f683bf4a2765a905e.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") } }; /* }}} */ |