~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Lee Bieber
  • Date: 2010-10-29 13:35:47 UTC
  • mfrom: (1890.1.3 build)
  • Revision ID: kalebral@gmail.com-20101029133547-ehu44so1ij4cylr5
Merge Shrews - fix bug 667288: Transaction_reader reporting error about dangerously large protobuf message
Merge Monty - fix bug 667598: static plugins should be addable via plugin-add   
Merge Brian - clean up C++ warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
    This constructor serves for creation of Open_tables_state instances
81
81
    which are used as backup storage.
82
82
  */
83
 
  Open_tables_state() { }
 
83
  Open_tables_state() :
 
84
    open_tables(0),
 
85
    temporary_tables(0),
 
86
    derived_tables(0),
 
87
    lock(0),
 
88
    extra_lock(0),
 
89
    version(0),
 
90
    current_tablenr(0)
 
91
  { }
84
92
  virtual ~Open_tables_state() {}
85
93
 
86
94
  Open_tables_state(uint64_t version_arg);