summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2004-06-25 01:29:30 +0400
committerunknown <konstantin@mysql.com>2004-06-25 01:29:30 +0400
commit7c5b6ec3ba2aa822f28184703872afb40f00f788 (patch)
treef5e6c06992ca42e0887888227e396a434f548077 /sql/ha_myisam.h
parent530d46f4e3ca688301623eefbc01401c676dc79c (diff)
downloadmariadb-git-7c5b6ec3ba2aa822f28184703872afb40f00f788.tar.gz
Followup to cleanup in handler interface.
sql/ha_myisam.h: - max_supported_key_part_length() is const now sql/ha_myisammrg.h: - max_supported_key_part_length() is const now sql/handler.h: - max_supported_key_part_length() is const now - removed warning about wrong order of initializer in handler ocnstructor.
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r--sql/ha_myisam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h
index f4c45e6524b..72ff6024109 100644
--- a/sql/ha_myisam.h
+++ b/sql/ha_myisam.h
@@ -63,7 +63,7 @@ class ha_myisam: public handler
}
uint max_supported_keys() const { return MI_MAX_KEY; }
uint max_supported_key_length() const { return MI_MAX_KEY_LENGTH; }
- uint max_supported_key_part_length() { return MI_MAX_KEY_LENGTH; }
+ uint max_supported_key_part_length() const { return MI_MAX_KEY_LENGTH; }
uint checksum() const;
int open(const char *name, int mode, uint test_if_locked);