From 362d697c9f26589be1a0ce294eb316ce99068815 Mon Sep 17 00:00:00 2001 From: "bar@bar.intranet.mysql.r18.ru" <> Date: Wed, 14 Jan 2004 14:02:51 +0400 Subject: [PATCH] item_strfunc.cc: Comment typo fix , --- sql/item_strfunc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);