diff options
author | unknown <monty@tik.mysql.com> | 2000-10-26 19:54:03 +0300 |
---|---|---|
committer | unknown <monty@tik.mysql.com> | 2000-10-26 19:54:03 +0300 |
commit | 3ae05104d091659ab27cba9a67651756e62ac124 (patch) | |
tree | f6c3faec12c4532f55979cba5e5e9b26f1bdb655 /sql/ha_berkeley.h | |
parent | c0d6644b9653b2634e66d7cedf0f97340d51410a (diff) | |
download | mariadb-git-3ae05104d091659ab27cba9a67651756e62ac124.tar.gz |
Fixed bug with ORDER BY on BDB tables.
New benchmarks tests
sql-bench/test-insert.sh:
Added a lot of new ORDER BY tests
sql/filesort.cc:
Fix for big BDB tables
sql/ha_berkeley.cc:
A
sql/ha_berkeley.h:
A
sql/handler.h:
A
sql/sql_class.h:
Portability fix
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
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;} |