diff options
author | unknown <serg@serg.mylan> | 2004-11-22 14:53:18 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-22 14:53:18 +0100 |
commit | 01604355acd5ae2da25ed654c52b4c788a35603b (patch) | |
tree | 5275ac54d53fc6e3a0af08020e0fde153e8a2493 /heap | |
parent | a3740c887e940144828543bc7c4e1ddfa8de2b7e (diff) | |
download | mariadb-git-01604355acd5ae2da25ed654c52b4c788a35603b.tar.gz |
Bug #6748 heap_rfirst() doesn't work (and never did!)
range for BETWEEN typo fixed
extra/perror.c:
meaningless error message fixed
heap/hp_rfirst.c:
Bug #6748 heap_rfirst() doesn't work (and never did!)
mysql-test/r/heap.result:
Bug #6748 heap_rfirst() doesn't work (and never did!)
mysql-test/r/range.result:
range for BETWEEN typo fixed
mysql-test/t/heap.test:
Bug #6748 heap_rfirst() doesn't work (and never did!)
sql/handler.cc:
Bug #6748 heap_rfirst() doesn't work (and never did!)
sql/sql_select.cc:
range for BETWEEN typo fixed
Diffstat (limited to 'heap')
-rw-r--r-- | heap/hp_rfirst.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/heap/hp_rfirst.c b/heap/hp_rfirst.c index 1668376ed1c..85548fea212 100644 --- a/heap/hp_rfirst.c +++ b/heap/hp_rfirst.c @@ -52,6 +52,7 @@ int heap_rfirst(HP_INFO *info, byte *record, int inx) my_errno=HA_ERR_END_OF_FILE; DBUG_RETURN(my_errno); } + DBUG_ASSERT(0); /* TODO fix it */ info->current_record=0; info->current_hash_ptr=0; info->update=HA_STATE_PREV_FOUND; |