~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/get_system_var.h

  • Committer: Brian Aker
  • Date: 2008-11-22 23:34:06 UTC
  • Revision ID: brian@tangent.org-20081122233406-fj063eeoy2dxvdmh
Removing more options around changing replication

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  void fix_length_and_dec() { assert(0); }
45
45
  /* TODO: fix to support views */
46
46
  const char *func_name() const { return "get_system_var"; }
47
 
  /**
48
 
    Indicates whether this system variable is written to the binlog or not.
49
 
 
50
 
    Variables are written to the binlog as part of "status_vars" in
51
 
    Query_log_event, as an Intvar_log_event, or a Rand_log_event.
52
 
 
53
 
    @return true if the variable is written to the binlog, false otherwise.
54
 
  */
55
 
  bool is_written_to_binlog();
56
47
};
57
48
 
58
49