~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.h

  • Committer: Paweł Blokus
  • Date: 2010-06-09 20:36:51 UTC
  • mto: This revision was merged to the branch mainline in revision 1620.
  • Revision ID: pawel@pawel-desktop-20100609203651-mbq5x34bt9m3kv0o
minor style fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    flush_log(false),
40
40
    flush_tables(false),
41
41
    flush_tables_with_read_lock(false),
42
 
    flush_status(false),
43
 
    flush_global_status(false)
 
42
    flush_status(false)
44
43
  {}
45
44
 
46
45
  bool execute();
50
49
  bool flush_tables;
51
50
  bool flush_tables_with_read_lock;
52
51
  bool flush_status;
53
 
  bool flush_global_status;
54
52
 
55
53
public:
56
54
  void setFlushLog(bool f) { flush_log= f; }
59
57
    flush_tables= flush_tables_with_read_lock= f;
60
58
  }
61
59
  void setFlushStatus(bool f) { flush_status= f; }
62
 
  void setFlushGlobalStatus(bool f) { flush_global_status= f; }
63
60
 
64
61
private:
65
62