diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2012-02-22 16:48:29 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2012-02-22 16:48:29 +0400 |
commit | 59b2bb9aca0fb037ab4c770a8fd684a3d4a40587 (patch) | |
tree | 03b80603727eb6ad72737bdbe2d1b1b59fc81739 /sql/sql_class.h | |
parent | c299e027eeddc35e0197ebc70805e0a303a4b135 (diff) | |
download | mariadb-git-59b2bb9aca0fb037ab4c770a8fd684a3d4a40587.tar.gz |
Added back MRR counters. The new names are: Handler_mrr_init,
Handler_mrr_key_refills, Handler_mrr_rowid_refills.
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 3b94270ae08..c5f500a6b18 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -577,9 +577,9 @@ typedef struct system_status_var calls made by range access. The intent is to count only calls made by BatchedKeyAccess. */ - ulong ha_multi_range_read_init_count; - ulong ha_mrr_extra_key_sorts; - ulong ha_mrr_extra_rowid_sorts; + ulong ha_mrr_init_count; + ulong ha_mrr_key_refills_count; + ulong ha_mrr_rowid_refills_count; ulong ha_rollback_count; ulong ha_update_count; |