diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-02-27 19:32:44 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-02-27 19:32:44 +0100 |
commit | 62dcaf8c2911572d730ba5e617a7c3cbbf86b22a (patch) | |
tree | dd1e73c8a65fd1570c4594870bb0e8afd2d271f6 /sql/sql_class.h | |
parent | 58c3e32dbdd43e8635c0320fcf5cc744e354fc65 (diff) | |
parent | 3ebb4b883370da9528b7482b8ba4ed9521f07553 (diff) | |
download | mariadb-git-62dcaf8c2911572d730ba5e617a7c3cbbf86b22a.tar.gz |
merge 5.5
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 563a9adefce..4584644c321 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -591,9 +591,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; @@ -602,6 +602,8 @@ typedef struct system_status_var ulong ha_tmp_update_count; ulong ha_tmp_write_count; ulong ha_prepare_count; + ulong ha_icp_attempts; + ulong ha_icp_match; ulong ha_discover_count; ulong ha_savepoint_count; ulong ha_savepoint_rollback_count; |