summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoringo@mysql.com <>2005-09-14 09:56:49 +0200
committeringo@mysql.com <>2005-09-14 09:56:49 +0200
commit73143077623c792497ee16a094d3aa6cc4d7e6e7 (patch)
tree62a310b25cf6ff423d024f6c9d99a3f8e152eff5 /include
parente31c488d6debd48c1fc2d0718d4a1fbffa78b25f (diff)
downloadmariadb-git-73143077623c792497ee16a094d3aa6cc4d7e6e7.tar.gz
Bug#12920 - key_read_requests counter appears to re-set
Enlarged the counter variables to ulonglong.
Diffstat (limited to 'include')
-rw-r--r--include/my_sys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_sys.h b/include/my_sys.h
index d6104a6a3a9..21fd58b2220 100644
--- a/include/my_sys.h
+++ b/include/my_sys.h
@@ -222,8 +222,8 @@ extern char *get_charsets_dir(char *buf);
/* statistics */
-extern ulong _my_cache_w_requests,_my_cache_write,_my_cache_r_requests,
- _my_cache_read;
+extern ulonglong _my_cache_w_requests, _my_cache_write;
+extern ulonglong _my_cache_r_requests, _my_cache_read;
extern ulong _my_blocks_used,_my_blocks_changed;
extern uint key_cache_block_size;
extern ulong my_file_opened,my_stream_opened, my_tmp_file_created;