diff options
author | pem@mysql.com <> | 2004-05-07 18:52:06 +0200 |
---|---|---|
committer | pem@mysql.com <> | 2004-05-07 18:52:06 +0200 |
commit | bf45960eef96dba7e7a7ffc8c3bfe6627daee2a3 (patch) | |
tree | 2f7b236a8721d14f1b398964b898d922fd133131 /sql/ha_berkeley.h | |
parent | e1182c5226ce1c5f5aff4c1e59798b9d3dccde2a (diff) | |
parent | df8e3eac456b14b420f724e658eee175d2ee5e57 (diff) | |
download | mariadb-git-bf45960eef96dba7e7a7ffc8c3bfe6627daee2a3.tar.gz |
Merge 4.1 -> 5.0
Diffstat (limited to 'sql/ha_berkeley.h')
-rw-r--r-- | sql/ha_berkeley.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/ha_berkeley.h b/sql/ha_berkeley.h index d25a9bbab69..525c82febd0 100644 --- a/sql/ha_berkeley.h +++ b/sql/ha_berkeley.h @@ -88,7 +88,7 @@ class ha_berkeley: public handler public: ha_berkeley(TABLE *table): handler(table), alloc_ptr(0),rec_buff(0), file(0), int_table_flags(HA_REC_NOT_IN_SEQ | - HA_KEYPOS_TO_RNDPOS | HA_LASTKEY_ORDER | + HA_KEYPOS_TO_RNDPOS | HA_LASTKEY_ORDER | HA_FAST_KEY_READ | HA_NULL_KEY | HA_BLOB_KEY | HA_NOT_EXACT_COUNT | HA_PRIMARY_KEY_IN_READ_INDEX | HA_DROP_BEFORE_CREATE | HA_AUTO_PART_KEY | HA_TABLE_SCAN_ON_INDEX | @@ -107,7 +107,6 @@ class ha_berkeley: public handler uint max_key_length() const { return MAX_KEY_LENGTH; } uint extra_rec_buf_length() { return BDB_HIDDEN_PRIMARY_KEY_LENGTH; } ha_rows estimate_number_of_rows(); - bool fast_key_read() { return 1;} const key_map *keys_to_use_for_scanning() { return &key_map_full; } bool has_transactions() { return 1;} |