~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.h

  • Committer: lbieber at stabletransit
  • Date: 2010-10-12 20:53:47 UTC
  • mfrom: (1842.1.3 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101012205347-zzg0en7nughfhven
Merge Monty - add valgrind stripping program to the tree, suppress size_t signature change
Merge Travis - File: /drizzled/xid.h. Changed struct name of 'st_drizzle_xid' to 'drizzle_xid', changed it to a C++ class and added constructor initialization list
Merge Brian - adding more documentation

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