diff options
author | Luis Soares <luis.soares@sun.com> | 2009-11-13 10:17:53 +0000 |
---|---|---|
committer | Luis Soares <luis.soares@sun.com> | 2009-11-13 10:17:53 +0000 |
commit | d8ca6b9dd9111db8f303d872f279f374af68e80b (patch) | |
tree | 5107afeb0f71e17a7fcdff3685ea606313d1aa3c /sql/set_var.h | |
parent | 0d46e5880e0bb00183b93dedfb8fb007f46dc36e (diff) | |
parent | 7cf9ee96ae496654ac912080f9b7a64f2950e938 (diff) | |
download | mariadb-git-d8ca6b9dd9111db8f303d872f279f374af68e80b.tar.gz |
manual merge: mysql-5.1-rep+2 (bug tree) --> mysql-5.1-rep+2 (latest)
CONFLICTS
=========
Text conflict in sql/sql_yacc.yy
1 conflicts encountered.
Diffstat (limited to 'sql/set_var.h')
-rw-r--r-- | sql/set_var.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sql/set_var.h b/sql/set_var.h index b5d90cae966..9257a6e3081 100644 --- a/sql/set_var.h +++ b/sql/set_var.h @@ -611,18 +611,6 @@ public: uchar *value_ptr(THD *thd, enum_var_type type, LEX_STRING *base); }; -class sys_var_thd_table_type :public sys_var_thd_storage_engine -{ -public: - sys_var_thd_table_type(sys_var_chain *chain, const char *name_arg, - plugin_ref SV::*offset_arg) - :sys_var_thd_storage_engine(chain, name_arg, offset_arg) - {} - void warn_deprecated(THD *thd); - void set_default(THD *thd, enum_var_type type); - bool update(THD *thd, set_var *var); -}; - class sys_var_thd_bit :public sys_var_thd { sys_check_func check_func; @@ -1212,19 +1200,6 @@ public: }; -class sys_var_trust_routine_creators :public sys_var_bool_ptr -{ - /* We need a derived class only to have a warn_deprecated() */ -public: - sys_var_trust_routine_creators(sys_var_chain *chain, - const char *name_arg, my_bool *value_arg) : - sys_var_bool_ptr(chain, name_arg, value_arg) {}; - void warn_deprecated(THD *thd); - void set_default(THD *thd, enum_var_type type); - bool update(THD *thd, set_var *var); -}; - - /** Handler for setting the system variable --read-only. */ |