summaryrefslogtreecommitdiff
path: root/sql/item_strfunc.cc
diff options
context:
space:
mode:
authorunknown <bar@bar.intranet.mysql.r18.ru>2004-01-14 14:02:51 +0400
committerunknown <bar@bar.intranet.mysql.r18.ru>2004-01-14 14:02:51 +0400
commitc6863b04e0dc05114dcd3b63361e1f114612b121 (patch)
tree2ec3faad5df282b9ef33eb55ebd33261188e7a8e /sql/item_strfunc.cc
parent7eea262321ed50eba83fa3369c9071f48a1e4757 (diff)
downloadmariadb-git-c6863b04e0dc05114dcd3b63361e1f114612b121.tar.gz
item_strfunc.cc:
Comment typo fix , sql/item_strfunc.cc: Comment typo fix ,
Diffstat (limited to 'sql/item_strfunc.cc')
-rw-r--r--sql/item_strfunc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_strfunc.cc b/sql/item_strfunc.cc
index 528345beb77..45b2b7455f9 100644
--- a/sql/item_strfunc.cc
+++ b/sql/item_strfunc.cc
@@ -979,7 +979,7 @@ String *Item_func_right::val_str(String *str)
As far "res" contains at least "length" bytes
(according to the above condition and return),
the below statement is safe. res->numchars() can
- never return a value less than "length".
+ never return a value more than "length".
*/
uint start=res->numchars()-(uint) length;
start=res->charpos(start);