diff options
author | monty@tik.mysql.com <> | 2000-10-26 19:54:03 +0300 |
---|---|---|
committer | monty@tik.mysql.com <> | 2000-10-26 19:54:03 +0300 |
commit | 99f5d9bb68affb8d9a71cf714bc7517c18695722 (patch) | |
tree | f6c3faec12c4532f55979cba5e5e9b26f1bdb655 /sql/ha_berkeley.h | |
parent | aad0e180fc87c3022d1be82a89d7d31e376a0d8d (diff) | |
download | mariadb-git-99f5d9bb68affb8d9a71cf714bc7517c18695722.tar.gz |
Fixed bug with ORDER BY on BDB tables.
New benchmarks tests
Diffstat (limited to 'sql/ha_berkeley.h')
-rw-r--r-- | sql/ha_berkeley.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_berkeley.h b/sql/ha_berkeley.h index 84061ae09be..1d1de613ce0 100644 --- a/sql/ha_berkeley.h +++ b/sql/ha_berkeley.h @@ -91,7 +91,8 @@ class ha_berkeley: public handler uint max_keys() const { return MAX_KEY-1; } uint max_key_parts() const { return MAX_REF_PARTS; } uint max_key_length() const { return MAX_KEY_LENGTH; } - uint extra_rec_buf_length() { return BDB_HIDDEN_PRIMARY_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;} bool has_transactions() { return 1;} |