diff options
author | serg@serg.mylan <> | 2003-10-11 13:06:55 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-10-11 13:06:55 +0200 |
commit | 8cc3951c8f00bbb4f66322c861cabb123122b4f3 (patch) | |
tree | ff3da12e7e88d561877cd7b6f3fe64edad0c10c0 /sql/ha_innodb.h | |
parent | 9be83de693748e795ffb7f75ee47f3e7f77145b7 (diff) | |
download | mariadb-git-8cc3951c8f00bbb4f66322c861cabb123122b4f3.tar.gz |
key_map with more that 64 bits width
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 13337f466bf..45990c479ab 100644 --- a/sql/ha_innodb.h +++ b/sql/ha_innodb.h @@ -124,7 +124,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); |