~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/concurrent.h

  • Committer: Brian Aker
  • Date: 2010-10-24 19:39:04 UTC
  • mfrom: (1874.3.4 refactor)
  • Revision ID: brian@tangent.org-20101024193904-6c5a62rtd14bx9q4
Merge for "how do we make sure concurrent, are only concurrent"

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  virtual TableShare *getMutableShare() { assert(_share); return _share; } /* Get rid of this long term */
46
46
  virtual bool hasShare() const { return _share ? true : false ; } /* Get rid of this long term */
47
47
  virtual void setShare(TableShare *new_share) { _share= new_share; } /* Get rid of this long term */
 
48
 
 
49
  int open_unireg_entry(Session *session,
 
50
                        const char *alias,
 
51
                        TableIdentifier &identifier);
 
52
  bool reopen_name_locked_table(TableList* table_list, Session *session);
48
53
};
49
54
 
50
55
} /* namespace table */