~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

Removed global.h. Fixed all the headers.
Also fixed headers to allow for some out of tree builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
787
787
class sys_var_key_buffer_size :public sys_var_key_cache_param
788
788
{
789
789
public:
790
 
  sys_var_key_buffer_size(sys_var_chain *chain, const char *name_arg)
791
 
    :sys_var_key_cache_param(chain, name_arg,
792
 
                             offsetof(KEY_CACHE, param_buff_size))
793
 
  {}
 
790
  sys_var_key_buffer_size(sys_var_chain *chain, const char *name_arg);
794
791
  bool update(Session *session, set_var *var);
795
792
  SHOW_TYPE show_type() { return SHOW_LONGLONG; }
796
793
};