~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Brian Aker
  • Date: 2008-11-21 22:11:22 UTC
  • Revision ID: brian@tangent.org-20081121221122-b39onio2vhnmbenm
RemoveĀ oneĀ set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1104
1104
};
1105
1105
 
1106
1106
 
1107
 
extern void fix_binlog_format_after_update(Session *session, enum_var_type type);
1108
 
 
1109
 
class sys_var_session_binlog_format :public sys_var_session_enum
1110
 
{
1111
 
public:
1112
 
  sys_var_session_binlog_format(sys_var_chain *chain, const char *name_arg, 
1113
 
                            ulong SV::*offset_arg)
1114
 
    :sys_var_session_enum(chain, name_arg, offset_arg,
1115
 
                      &binlog_format_typelib,
1116
 
                      fix_binlog_format_after_update)
1117
 
  {};
1118
 
  bool is_readonly() const;
1119
 
};
1120
 
 
1121
1107
/****************************************************************************
1122
1108
  Classes for parsing of the SET command
1123
1109
****************************************************************************/