~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance/shared.h

  • Committer: Monty Taylor
  • Date: 2011-02-12 21:49:59 UTC
  • mto: (2165.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110212214959-bve8sh4hu761y48m
Updated the windows build to be able to build from the command line and not to show warnings on strncpy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
    event_observers= observers;
88
88
  }
89
89
 
90
 
  virtual bool replicate() const
91
 
  {
92
 
    if (getTableMessage()->options().has_dont_replicate() and getTableMessage()->options().dont_replicate())
93
 
      return false;
94
 
 
95
 
    return true;
96
 
  }
97
 
 
98
90
private:
99
91
  boost::mutex mutex;                /* For locking the share  */
100
92