~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-12 16:41:20 UTC
  • mto: This revision was merged to the branch mainline in revision 2398.
  • Revision ID: olafvdspek@gmail.com-20110812164120-uu21idtt9a9sa92e
cppcheck

Show diffs side-by-side

added added

removed removed

Lines of Context:
420
420
 
421
421
 
422
422
  /* See if this can be blown away */
423
 
  inline uint32_t getDBStat () { return db_stat; }
424
 
  inline uint32_t setDBStat () { return db_stat; }
 
423
  inline uint32_t getDBStat () const { return db_stat; }
 
424
 
425
425
  /**
426
426
   * Create Item_field for each column in the table.
427
427
   *
518
518
  }
519
519
 
520
520
  /* Is table open or should be treated as such by name-locking? */
521
 
  inline bool is_name_opened()
 
521
  bool is_name_opened() const
522
522
  {
523
523
    return db_stat || open_placeholder;
524
524
  }