~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2009-01-17 02:46:52 UTC
  • Revision ID: brian@gir-3.local-20090117024652-4ducefje08ajbs1q
Refactor append_identifier and remove dead OPTION_QUOTE_SHOW_CREATE option
(we always quote).

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
 
399
399
  if (name)
400
400
  {
401
 
    Session *session= current_session;
402
401
    str->append(STRING_WITH_LEN(" AS "));
403
 
    append_identifier(session, str, name, (uint) strlen(name));
 
402
    str->append_identifier(name, (uint) strlen(name));
404
403
  }
405
404
}
406
405