summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-05-17 11:10:22 +0200
committerserg@serg.mylan <>2004-05-17 11:10:22 +0200
commiteb936575073ba2d75c744f133fcd4a6e95e97993 (patch)
treeb8416c78a6f1084281fbea86eed99ed5250dc534 /sql
parentb269d4ad219ee97f1e6f2f4e97a137919f4b3213 (diff)
downloadmariadb-git-eb936575073ba2d75c744f133fcd4a6e95e97993.tar.gz
typo fixed
Diffstat (limited to 'sql')
-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
}