~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-24 11:55:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2447.
  • Revision ID: olafvdspek@gmail.com-20111024115549-kimvi1pifyg57ghx
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
437
437
    }
438
438
    memcpy(&blob,ptr+sizeof(uint32_t),sizeof(char*));
439
439
 
440
 
    blob_length=my_strnxfrm(field_charset,
441
 
                            to, length, blob, blob_length);
 
440
    blob_length= field_charset->strnxfrm(to, length, blob, blob_length);
442
441
    assert(blob_length == length);
443
442
  }
444
443
}