~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/systab_dump_ms.cc

  • Committer: Brian Aker
  • Date: 2011-02-03 20:32:09 UTC
  • mfrom: (2139.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110203203209-r1t4knmy15x5n1w2
Rollup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
436
436
    /* Get the blob record: */
437
437
#ifdef DRIZZLED
438
438
    blob_rec= buf + field->offset(table->getInsertRecord());
439
 
    packlength= field->pack_length() - table->getShare()->blob_ptr_size;
 
439
    packlength= field->pack_length() - table->getShare()->sizeBlobPtr();
440
440
#else
441
441
    blob_rec= buf + field->offset(table->record[0]);
442
 
    packlength= field->pack_length() - table->s->blob_ptr_size;
 
442
    packlength= field->pack_length() - table->s->sizeBlobPtr();
443
443
#endif
444
444
 
445
445
    memcpy(&blob_ptr, blob_rec +packlength, sizeof(char*));