~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Mark Atwood
  • Date: 2011-10-25 19:08:35 UTC
  • mfrom: (2445.1.6 rf)
  • Revision ID: me@mark.atwood.name-20111025190835-g21cn911ypxjd5fi
mergeĀ lp:~olafvdspek/drizzle/refactor7

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
}