diff options
author | monty@tik.mysql.fi <> | 2002-01-12 15:42:54 +0200 |
---|---|---|
committer | monty@tik.mysql.fi <> | 2002-01-12 15:42:54 +0200 |
commit | 7dd4eb71fe7576e428fe1ecaaad214d3a39ff4dc (patch) | |
tree | 5c9b603230485a57877f3b066d095b6668bd1d2e /sql/ha_myisammrg.cc | |
parent | 47408baac6f53cd32ff45c83b09fb56a9084bd5b (diff) | |
download | mariadb-git-7dd4eb71fe7576e428fe1ecaaad214d3a39ff4dc.tar.gz |
Added support of null keys in HEAP tables
Added ORDER BY optimization
Diffstat (limited to 'sql/ha_myisammrg.cc')
-rw-r--r-- | sql/ha_myisammrg.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/ha_myisammrg.cc b/sql/ha_myisammrg.cc index 999d9fe33ef..63a23fb708f 100644 --- a/sql/ha_myisammrg.cc +++ b/sql/ha_myisammrg.cc @@ -112,6 +112,15 @@ int ha_myisammrg::index_read_idx(byte * buf, uint index, const byte * key, return error; } +int ha_myisammrg::index_read_last(byte * buf, const byte * key, uint key_len) +{ + statistic_increment(ha_read_key_count,&LOCK_status); + int error=myrg_rkey(file,buf,active_index, key, key_len, + HA_READ_PREFIX_LAST); + table->status=error ? STATUS_NOT_FOUND: 0; + return error; +} + int ha_myisammrg::index_next(byte * buf) { statistic_increment(ha_read_next_count,&LOCK_status); |