~drizzle-developers/drizzle/nightly

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.h

  • Committer: Hudson Drizzle
  • Date: 2010-11-10 01:28:55 UTC
  • mfrom: (1273.776.75 staging)
  • Revision ID: hudson@drizzle.org-20101110012855-cdi06s1bk2e1kigx
* Non-maintainer upload.
* Merged from trunk

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)
 
42
    flush_status(false),
 
43
    flush_global_status(false)
43
44
  {}
44
45
 
45
46
  bool execute();
49
50
  bool flush_tables;
50
51
  bool flush_tables_with_read_lock;
51
52
  bool flush_status;
 
53
  bool flush_global_status;
52
54
 
53
55
public:
54
56
  void setFlushLog(bool f) { flush_log= f; }
57
59
    flush_tables= flush_tables_with_read_lock= f;
58
60
  }
59
61
  void setFlushStatus(bool f) { flush_status= f; }
 
62
  void setFlushGlobalStatus(bool f) { flush_global_status= f; }
60
63
 
61
64
private:
62
65