~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.cc

  • Committer: Mark Atwood
  • Date: 2011-08-03 15:44:55 UTC
  • mfrom: (2318.8.15 refactor2)
  • Revision ID: me@mark.atwood.name-20110803154455-jqg3gnxofkq8wetv
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
676
676
  append(&quote_char, 1);
677
677
}
678
678
 
679
 
bool check_if_only_end_space(const charset_info_st * const cs, char *str,
680
 
                             char *end)
 
679
void String::append_identifier(str_ref v)
 
680
{
 
681
  append_identifier(v.data(), v.size());
 
682
}
 
683
 
 
684
bool check_if_only_end_space(const charset_info_st * const cs, char *str, char *end)
681
685
{
682
686
  return str+ cs->cset->scan(cs, str, end, MY_SEQ_SPACES) == end;
683
687
}