diff options
author | SVN Migration <svn@php.net> | 2008-12-03 20:30:45 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2008-12-03 20:30:45 +0000 |
commit | 2876046398950e59c3b3c460e67e6fec7ff2ba3c (patch) | |
tree | 33b2b8b4b859960a6446ad19d0ada1c55f9cfcda /ext/mysqlnd/mysqlnd_statistics.c | |
parent | 3fb86b0b9e79e6a3312b694f30ee627e2e1b325c (diff) | |
download | php-git-php-5.3.0alpha2.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_5_3_0alpha2'.php-5.3.0alpha2
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 62 |
1 files changed, 2 insertions, 60 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 7135ba3dbf..eb8645b132 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -30,7 +30,6 @@ /* {{{ mysqlnd_stats_values_names */ - const MYSQLND_STRING mysqlnd_stats_values_names[STAT_LAST] = { { STR_W_LEN("bytes_sent") }, @@ -39,21 +38,6 @@ const MYSQLND_STRING mysqlnd_stats_values_names[STAT_LAST] = { STR_W_LEN("packets_received") }, { STR_W_LEN("protocol_overhead_in") }, { STR_W_LEN("protocol_overhead_out") }, - { STR_W_LEN("bytes_received_ok_packet") }, - { STR_W_LEN("bytes_received_eof_packet") }, - { STR_W_LEN("bytes_received_rset_header_packet") }, - { STR_W_LEN("bytes_received_rset_field_meta_packet") }, - { STR_W_LEN("bytes_received_rset_row_packet") }, - { STR_W_LEN("bytes_received_prepare_response_packet") }, - { STR_W_LEN("bytes_received_change_user_packet") }, - { STR_W_LEN("packets_sent_command") }, - { STR_W_LEN("packets_received_ok") }, - { STR_W_LEN("packets_received_eof") }, - { STR_W_LEN("packets_received_rset_header") }, - { STR_W_LEN("packets_received_rset_field_meta") }, - { STR_W_LEN("packets_received_rset_row") }, - { STR_W_LEN("packets_received_prepare_response") }, - { STR_W_LEN("packets_received_change_user") }, { STR_W_LEN("result_set_queries") }, { STR_W_LEN("non_result_set_queries") }, { STR_W_LEN("no_index_used") }, @@ -107,51 +91,9 @@ const MYSQLND_STRING mysqlnd_stats_values_names[STAT_LAST] = { STR_W_LEN("mem_malloc_ammount") }, { STR_W_LEN("mem_calloc_count") }, { STR_W_LEN("mem_calloc_ammount") }, - { STR_W_LEN("mem_realloc_count") }, + { STR_W_LEN("mem_realloc_calloc") }, { STR_W_LEN("mem_realloc_ammount") }, - { STR_W_LEN("mem_free_count") }, - { STR_W_LEN("proto_text_fetched_null") }, - { STR_W_LEN("proto_text_fetched_bit") }, - { STR_W_LEN("proto_text_fetched_tinyint") }, - { STR_W_LEN("proto_text_fetched_short") }, - { STR_W_LEN("proto_text_fetched_int24") }, - { STR_W_LEN("proto_text_fetched_int") }, - { STR_W_LEN("proto_text_fetched_bigint") }, - { STR_W_LEN("proto_text_fetched_decimal") }, - { STR_W_LEN("proto_text_fetched_float") }, - { STR_W_LEN("proto_text_fetched_double") }, - { STR_W_LEN("proto_text_fetched_date") }, - { STR_W_LEN("proto_text_fetched_year") }, - { STR_W_LEN("proto_text_fetched_time") }, - { STR_W_LEN("proto_text_fetched_datetime") }, - { STR_W_LEN("proto_text_fetched_timestamp") }, - { STR_W_LEN("proto_text_fetched_string") }, - { STR_W_LEN("proto_text_fetched_blob") }, - { STR_W_LEN("proto_text_fetched_enum") }, - { STR_W_LEN("proto_text_fetched_set") }, - { STR_W_LEN("proto_text_fetched_geometry") }, - { STR_W_LEN("proto_text_fetched_other") }, - { STR_W_LEN("proto_binary_fetched_null") }, - { STR_W_LEN("proto_binary_fetched_bit") }, - { STR_W_LEN("proto_binary_fetched_tinyint") }, - { STR_W_LEN("proto_binary_fetched_short") }, - { STR_W_LEN("proto_binary_fetched_int24") }, - { STR_W_LEN("proto_binary_fetched_int") }, - { STR_W_LEN("proto_binary_fetched_bigint") }, - { STR_W_LEN("proto_binary_fetched_decimal") }, - { STR_W_LEN("proto_binary_fetched_float") }, - { STR_W_LEN("proto_binary_fetched_double") }, - { STR_W_LEN("proto_binary_fetched_date") }, - { STR_W_LEN("proto_binary_fetched_year") }, - { STR_W_LEN("proto_binary_fetched_time") }, - { STR_W_LEN("proto_binary_fetched_datetime") }, - { STR_W_LEN("proto_binary_fetched_timestamp") }, - { STR_W_LEN("proto_binary_fetched_string") }, - { STR_W_LEN("proto_binary_fetched_blob") }, - { 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("mem_free_count") } }; /* }}} */ |