~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.h

  • Committer: David Shrewsbury
  • Date: 2010-10-05 20:38:57 UTC
  • mto: (1814.1.4 build)
  • mto: This revision was merged to the branch mainline in revision 1816.
  • Revision ID: shrewsbury.dave@gmail.com-20101005203857-v2xvi0zblliyxxf8
Add options to proto files for use when generating Java source files.

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