diff options
author | monty@hundin.mysql.fi <> | 2001-11-29 15:34:37 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-11-29 15:34:37 +0200 |
commit | 4b513347c4c5ca72c13ec42c499d243c0dfdcd1f (patch) | |
tree | 5278a62187996e3ff76046ee3a27680bcadfc05f /sql/handler.h | |
parent | 4d5d1ae2ef5d57c0f926a7e5c489d726755b8211 (diff) | |
download | mariadb-git-4b513347c4c5ca72c13ec42c499d243c0dfdcd1f.tar.gz |
Better optimization for InnoDB and BDB tables for ORDER BY
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index f6e9ad61d94..560420a480d 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -223,6 +223,7 @@ public: { return ulonglong2double(data_file_length) / IO_SIZE + 1; } virtual double read_time(ha_rows rows) { return rows; } virtual bool fast_key_read() { return 0;} + virtual key_map keys_to_use_for_scanning() { return 0; } virtual bool has_transactions(){ return 0;} virtual uint extra_rec_buf_length() { return 0; } virtual ha_rows estimate_number_of_rows() { return records+EXTRA_RECORDS; } |