diff options
author | Georgi Kodinov <kgeorge@mysql.com> | 2008-12-02 13:21:05 +0200 |
---|---|---|
committer | Georgi Kodinov <kgeorge@mysql.com> | 2008-12-02 13:21:05 +0200 |
commit | 014143e8588c4313ccf10e269aa34a997f5772b6 (patch) | |
tree | 8deca9274adf13bf61f505195238f650eda0e3d6 /sql/set_var.h | |
parent | bd53e304d7a75854dea2b732468fe4b18ef3aaf8 (diff) | |
download | mariadb-git-014143e8588c4313ccf10e269aa34a997f5772b6.tar.gz |
Fixed a bad merge (5.0->5.1) of the fix for bug 37339.
There was a missing initialization.
sql/set_var.h:
Added an initialization missing during the merge of 37339.
Diffstat (limited to 'sql/set_var.h')
-rw-r--r-- | sql/set_var.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/set_var.h b/sql/set_var.h index 2e58b2faa7d..b6c67d1ab4a 100644 --- a/sql/set_var.h +++ b/sql/set_var.h @@ -82,6 +82,7 @@ public: sys_var(const char *name_arg, sys_after_update_func func= NULL, Binlog_status_enum binlog_status_arg= NOT_IN_BINLOG) :name(name_arg), after_update(func), no_support_one_shot(1), + is_os_charset (FALSE), binlog_status(binlog_status_arg), m_allow_empty_value(TRUE) {} |