diff options
author | serg@serg.mylan <> | 2003-10-15 12:25:44 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-10-15 12:25:44 +0200 |
commit | 50d9b95b771cf083fd090f45aa0c74eb5e0fceb3 (patch) | |
tree | 39df3a873ccd4aba6541c6659c5508843742f8be /sql/ha_innodb.h | |
parent | d2932da3477f77846a67c1aca5b6720c68367451 (diff) | |
parent | 261831ddea41c0fa7dac4fb624f3c2b9d4f6d129 (diff) | |
download | mariadb-git-50d9b95b771cf083fd090f45aa0c74eb5e0fceb3.tar.gz |
merged
Diffstat (limited to 'sql/ha_innodb.h')
-rw-r--r-- | sql/ha_innodb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_innodb.h b/sql/ha_innodb.h index 0c89a9d29ce..9ef47a105d6 100644 --- a/sql/ha_innodb.h +++ b/sql/ha_innodb.h @@ -125,7 +125,7 @@ class ha_innobase: public handler uint max_key_length() const { return((MAX_KEY_LENGTH <= 3500) ? MAX_KEY_LENGTH : 3500);} bool fast_key_read() { return 1;} - key_map keys_to_use_for_scanning() { return ~(key_map) 0; } + const key_map& keys_to_use_for_scanning() { return key_map_full; } bool has_transactions() { return 1;} int open(const char *name, int mode, uint test_if_locked); |