~drizzle-developers/ubuntu/karmic/drizzle/ppa

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.h

  • Committer: Monty Taylor
  • Date: 2010-11-10 22:59:29 UTC
  • mfrom: (1308.1.27 ubuntu)
  • Revision ID: mordred@inaugust.com-20101110225929-fd7pqkg4xtuidm10
* New upstream release.
* New upstream release.
* drizzledump.1 manpage shipping in tarball now.
* Removed quilt patches for things applied upstream.
* Added support for RabbitMQ plugin.
* Added support for libnotify error message plugin.
* Added build depend on libboost-iostreams-dev.
* Karmic PPA

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