diff options
author | unknown <ram@gw.mysql.r18.ru> | 2004-02-02 20:25:39 +0400 |
---|---|---|
committer | unknown <ram@gw.mysql.r18.ru> | 2004-02-02 20:25:39 +0400 |
commit | 7abd2611694cc4da43d3f1d2c43422d720db4743 (patch) | |
tree | ae7957062d4d1c4f2256c593e924347d05c66bb6 /sql/item_strfunc.cc | |
parent | cf3b913da6f1a420783c27b372e31c6848ec1372 (diff) | |
download | mariadb-git-7abd2611694cc4da43d3f1d2c43422d720db4743.tar.gz |
just tried to find all 'skipp' and replace it with 'skip'.
client/sql_string.cc:
skipp -> skip
dbug/dbug.c:
skipp -> skip
myisam/mi_create.c:
skipp -> skip
myisam/mi_dynrec.c:
skipp -> skip
myisam/mi_packrec.c:
skipp -> skip
myisam/mi_rrnd.c:
skipp -> skip
myisam/mi_test1.c:
skipp -> skip
myisam/myisampack.c:
skipp -> skip
myisam/rt_test.c:
skipp -> skip
myisam/sp_test.c:
skipp -> skip
mysys/default.c:
skipp -> skip
mysys/mf_iocache.c:
skipp -> skip
mysys/mf_pack.c:
skipp -> skip
mysys/mf_wcomp.c:
skipp -> skip
mysys/typelib.c:
skipp -> skip
sql/filesort.cc:
skipp -> skip
sql/item_strfunc.cc:
skipp -> skip
sql/mysqld.cc:
skipp -> skip
sql/opt_range.h:
skipp -> skip
sql/sql_delete.cc:
skipp -> skip
sql/sql_select.cc:
skipp -> skip
sql/sql_string.cc:
skipp -> skip
sql/sql_update.cc:
skipp -> skip
strings/ctype-bin.c:
skipp -> skip
strings/ctype-simple.c:
skipp -> skip
strings/r_strinstr.c:
skipp -> skip
strings/strinstr.c:
skipp -> skip
strings/strstr.c:
skipp -> skip
Diffstat (limited to 'sql/item_strfunc.cc')
-rw-r--r-- | sql/item_strfunc.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_strfunc.cc b/sql/item_strfunc.cc index 5420a8f69e4..f5922d03868 100644 --- a/sql/item_strfunc.cc +++ b/sql/item_strfunc.cc @@ -780,7 +780,7 @@ redo: register char *i,*j; i=(char*) ptr+1; j=(char*) search+1; while (j != search_end) - if (*i++ != *j++) goto skipp; + if (*i++ != *j++) goto skip; offset= (int) (ptr-res->ptr()); if (res->length()-from_length + to_length > current_thd->variables.max_allowed_packet) @@ -794,7 +794,7 @@ redo: offset+=(int) to_length; goto redo; } -skipp: +skip: if ((l=my_ismbchar(res->charset(), ptr,strend))) ptr+=l; else ++ptr; } @@ -1089,13 +1089,13 @@ String *Item_func_substr_index::val_str(String *str) register char *i,*j; i=(char*) ptr+1; j=(char*) search+1; while (j != search_end) - if (*i++ != *j++) goto skipp; + if (*i++ != *j++) goto skip; if (pass==0) ++n; else if (!--c) break; ptr+=delimeter_length; continue; } - skipp: + skip: if ((l=my_ismbchar(res->charset(), ptr,strend))) ptr+=l; else ++ptr; } /* either not found or got total number when count<0 */ |