diff options
author | Andrey Hristov <andrey@php.net> | 2010-01-11 18:27:31 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-01-11 18:27:31 +0000 |
commit | 1ea390938baf8d70987c8af266c010d4adcab0fb (patch) | |
tree | f745850afd941c85d6e923f188f9432c3ba3ee91 /ext/mysqlnd/mysqlnd.c | |
parent | 593648f9f676e27102e5092bad1ccaac3f43391d (diff) | |
download | php-git-1ea390938baf8d70987c8af266c010d4adcab0fb.tar.gz |
and another change to make the stats API re-usable
Diffstat (limited to 'ext/mysqlnd/mysqlnd.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index b3994e26c2..23af6dca92 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -2029,7 +2029,7 @@ MYSQLND_METHOD(mysqlnd_conn, get_connection_stats)(const MYSQLND * const conn, { DBG_ENTER("mysqlnd_conn::get_connection_stats"); DBG_INF_FMT("conn=%llu", conn->thread_id); - mysqlnd_fill_stats_hash(conn->stats, return_value TSRMLS_CC ZEND_FILE_LINE_CC); + mysqlnd_fill_stats_hash(conn->stats, mysqlnd_stats_values_names, return_value TSRMLS_CC ZEND_FILE_LINE_CC); DBG_VOID_RETURN; } /* }}} */ |