~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.cc

  • Committer: Mark Atwood
  • Date: 2011-11-11 18:23:18 UTC
  • mfrom: (2456.1.5 rf)
  • Revision ID: me@mark.atwood.name-20111111182318-skgcp9ce65fd2goa
mergeĀ lp:~olafvdspek/drizzle/refactor11

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
      str->append_identifier(str_ref(table_name));
279
279
      cmp_name= table_name;
280
280
    }
281
 
    if (my_strcasecmp(table_alias_charset, cmp_name, alias) && alias && alias[0])
 
281
    if (table_alias_charset->strcasecmp(cmp_name, alias) && alias && alias[0])
282
282
    {
283
283
      str->append(' ');
284
284
      str->append_identifier(boost::to_lower_copy(string(alias)));