~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 13:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705131634-f7g1fjro5slibmdj
Add data_ref.h
Use str_ref for append_identifier

Show diffs side-by-side

added added

removed removed

Lines of Context:
371
371
  if (name)
372
372
  {
373
373
    str->append(STRING_WITH_LEN(" AS "));
374
 
    str->append_identifier(name, (uint32_t) strlen(name));
 
374
    str->append_identifier(str_ref(name));
375
375
  }
376
376
}
377
377