diff options
author | unknown <serg@serg.mylan> | 2004-05-17 11:10:22 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-05-17 11:10:22 +0200 |
commit | 1915bfebcb9005102c72028221bb89aa5f0204e4 (patch) | |
tree | b8416c78a6f1084281fbea86eed99ed5250dc534 /sql/ha_heap.cc | |
parent | 63811cb07919cf6dc109f0043ece3a617006e970 (diff) | |
download | mariadb-git-1915bfebcb9005102c72028221bb89aa5f0204e4.tar.gz |
typo fixed
Diffstat (limited to 'sql/ha_heap.cc')
-rw-r--r-- | sql/ha_heap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_heap.cc b/sql/ha_heap.cc index 9915dc90dc1..c375614ac95 100644 --- a/sql/ha_heap.cc +++ b/sql/ha_heap.cc @@ -375,7 +375,7 @@ ha_rows ha_heap::records_in_range(uint inx, key_range *min_key, min_key->length != key->key_length || min_key->flag != HA_READ_KEY_EXACT || max_key->flag != HA_READ_AFTER_KEY) - return HA_POS_ERROR; // Can't only use exact keys + return HA_POS_ERROR; // Can only use exact keys return 10; // Good guess } |