diff options
author | serg@serg.mylan <> | 2003-08-05 21:14:15 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-08-05 21:14:15 +0200 |
commit | 79922d946ac7c7c9c77c10fd7f831f14f2a9892c (patch) | |
tree | 7f824b71d5779659b28c60ef72d0b119daa9ccf9 /sql/ha_myisam.h | |
parent | 6ac0c55c103685c9e4bcd76080a5d5cb428c6130 (diff) | |
download | mariadb-git-79922d946ac7c7c9c77c10fd7f831f14f2a9892c.tar.gz |
table checksum background:
my_checksum() mysys function
NISAM checksum code moved from mysys to isam/ - it's obsolete
MyISAM checksum code moved to mysys
table's checksum accessible from sql layer
SHOW TABLE STATUS shows checksum (WL#646)
code cleanup
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index 8486e25556b..e4e3192af10 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -64,6 +64,7 @@ class ha_myisam: public handler uint max_keys() const { return MI_MAX_KEY; } uint max_key_parts() const { return MAX_REF_PARTS; } uint max_key_length() const { return MI_MAX_KEY_LENGTH; } + uint checksum() const; int open(const char *name, int mode, uint test_if_locked); int close(void); |