~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Brian Aker
  • Date: 2010-10-13 22:50:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1852.
  • Revision ID: brian@tangent.org-20101013225035-arbmgdy7fygq8trc
Remove random use of table (we just needed the blob to be set correctly to
make it work).

Show diffs side-by-side

added added

removed removed

Lines of Context:
531
531
 
532
532
uint32_t Field_blob::pack_length() const
533
533
{
534
 
  return (uint32_t) (packlength + getTable()->getShare()->blob_ptr_size);
 
534
  return (uint32_t) (packlength + portable_sizeof_char_ptr);
535
535
}
536
536
 
537
537
void Field_blob::sql_type(String &res) const