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 | bc6c22646119e6a31dccc00d49c8fa9be0909dba (patch) | |
tree | 5275ac54d53fc6e3a0af08020e0fde153e8a2493 /heap | |
parent | 1d50a78c2b7849051ac242d7a148c2c6f60a48c7 (diff) | |
download | mariadb-git-bc6c22646119e6a31dccc00d49c8fa9be0909dba.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; |