diff options
author | Andrey Hristov <andrey@php.net> | 2009-10-22 14:30:51 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-10-22 14:30:51 +0000 |
commit | a692479d21a9c581e187f4615793497131df27c6 (patch) | |
tree | a8bdcccd036a17feaf1dc12a54be85abdfb8674b /ext/mysqlnd/mysqlnd_statistics.c | |
parent | d35645997152ccd2dc4617d0e9f4bdcd934be87c (diff) | |
download | php-git-a692479d21a9c581e187f4615793497131df27c6.tar.gz |
Count number of affected_rows for normal and PS queries
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 8b8a220e5a..d65c8c1883 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -76,6 +76,9 @@ const MYSQLND_STRING mysqlnd_stats_values_names[STAT_LAST] = { STR_W_LEN("rows_fetched_from_client_ps_buffered") }, { STR_W_LEN("rows_fetched_from_client_ps_unbuffered") }, { STR_W_LEN("rows_fetched_from_client_ps_cursor") }, + { STR_W_LEN("rows_affected_normal") }, + { STR_W_LEN("rows_affected_ps") }, + { STR_W_LEN("rows_skipped_normal") }, { STR_W_LEN("rows_skipped_normal") }, { STR_W_LEN("rows_skipped_ps") }, { STR_W_LEN("copy_on_write_saved") }, |