~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field_conv.cc

MergedĀ fromĀ Mats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
275
275
{
276
276
  ulong length=((Field_blob*) copy->from_field)->get_length();
277
277
  ((Field_blob*) copy->to_field)->store_length(length);
278
 
  memcpy_fixed(copy->to_ptr,copy->from_ptr,sizeof(char*));
 
278
  memcpy(copy->to_ptr,copy->from_ptr,sizeof(char*));
279
279
}
280
280
 
281
281
static void do_conv_blob(Copy_field *copy)