~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log_event.cc

Merged from Andrey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
465
465
  else
466
466
  {
467
467
    *ptr++= '\'';
468
 
    ptr+= escape_string_for_mysql(csinfo, ptr, 0,
469
 
                                  from->ptr(), from->length());
 
468
    ptr+= escape_string_for_drizzle(csinfo, ptr, 0,
 
469
                                    from->ptr(), from->length());
470
470
    *ptr++='\'';
471
471
  }
472
472
  to->length(orig_len + ptr - beg);