summaryrefslogtreecommitdiff
path: root/sql/ha_heap.cc
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-05-17 11:10:22 +0200
committerunknown <serg@serg.mylan>2004-05-17 11:10:22 +0200
commit1915bfebcb9005102c72028221bb89aa5f0204e4 (patch)
treeb8416c78a6f1084281fbea86eed99ed5250dc534 /sql/ha_heap.cc
parent63811cb07919cf6dc109f0043ece3a617006e970 (diff)
downloadmariadb-git-1915bfebcb9005102c72028221bb89aa5f0204e4.tar.gz
typo fixed
Diffstat (limited to 'sql/ha_heap.cc')
-rw-r--r--sql/ha_heap.cc2
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
}