MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / skip_delimiters

Function skip_delimiters

extra/comp_err.c:818–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

816*/
817
818static char *skip_delimiters(char *str)
819{
820 DBUG_ENTER("skip_delimiters");
821 for (;
822 *str == ' ' || *str == ',' || *str == '\t' || *str == '\r' ||
823 *str == '\n' || *str == '='; str++)
824 ;
825 DBUG_RETURN(str);
826}
827
828
829/*

Callers 5

parse_error_offsetFunction · 0.85
parse_default_languageFunction · 0.85
parse_padd_stringFunction · 0.85
parse_error_stringFunction · 0.85
parse_charset_stringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected