~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2010-06-02 23:40:24 UTC
  • mto: (1578.6.9 explain-drizzle)
  • mto: This revision was merged to the branch mainline in revision 1585.
  • Revision ID: brian@gir-2.local-20100602234024-x26qr3pfhvood1d7
keys and fields partial encapsulation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
295
295
  inline bool hasShare() const { return s ? true : false ; } /* Get rid of this long term */
296
296
  inline TableShare *getMutableShare() { assert(s); return s; } /* Get rid of this long term */
297
297
  inline void setShare(TableShare *new_share) { s= new_share; } /* Get rid of this long term */
298
 
  inline uint32_t sizeKeys() { return s->keys; }
299
 
  inline uint32_t sizeFields() { return s->fields; }
 
298
  inline uint32_t sizeKeys() { return s->sizeKeys(); }
 
299
  inline uint32_t sizeFields() { return s->sizeFields(); }
300
300
  inline uint32_t getRecordLength() const { return s->getRecordLength(); }
301
301
  inline uint32_t sizeBlobFields() { return s->blob_fields; }
302
302
  inline uint32_t *getBlobField() { return &s->blob_field[0]; }