~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Brian Aker
  • Date: 2010-10-29 03:21:16 UTC
  • mto: (1890.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1891.
  • Revision ID: brian@tangent.org-20101029032116-ffwo3fvqpwsjp8w6
C++ warning fixes.

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);