~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.h

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:27:09 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032709-oyvfrc6eb8fzj0mr
fix docs warning: docs/unlock.rst:2: (WARNING/2) Title underline too short.

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