~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definition/table.h

  • Committer: Brian Aker
  • Date: 2010-11-08 21:03:52 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1917.
  • Revision ID: brian@tangent.org-20101108210352-vthbzdksgrcj4nax
Remove a bunch of dead code from within table share.

Show diffs side-by-side

added added

removed removed

Lines of Context:
574
574
  uint8_t blob_ptr_size;                        /* 4 or 8 */
575
575
  bool db_low_byte_first;               /* Portable row format */
576
576
 
577
 
private:
578
 
  bool name_lock;
579
 
public:
580
 
  bool isNameLock() const
581
 
  {
582
 
    return name_lock;
583
 
  }
584
 
 
585
 
  bool replace_with_name_lock;
586
 
 
587
 
private:
588
 
  bool waiting_on_cond;                 /* Protection against free */
589
 
public:
590
 
  bool isWaitingOnCondition()
591
 
  {
592
 
    return waiting_on_cond;
593
 
  }
594
 
 
595
577
  /*
596
578
    Set of keys in use, implemented as a Bitmap.
597
579
    Excludes keys disabled by ALTER Table ... DISABLE KEYS.