~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Brian Aker
  • Date: 2008-11-25 22:41:32 UTC
  • Revision ID: brian@tangent.org-20081125224132-v8sdhpalcfyojs4n
Remove dead rand structures

Show diffs side-by-side

added added

removed removed

Lines of Context:
679
679
};
680
680
 
681
681
 
682
 
class sys_var_rand_seed1 :public sys_var
683
 
{
684
 
public:
685
 
  sys_var_rand_seed1(sys_var_chain *chain, const char *name_arg,
686
 
                     Binlog_status_enum binlog_status_arg= NOT_IN_BINLOG)
687
 
    :sys_var(name_arg, NULL, binlog_status_arg)
688
 
  { chain_sys_var(chain); }
689
 
  bool update(Session *session, set_var *var);
690
 
  bool check_type(enum_var_type type) { return type == OPT_GLOBAL; }
691
 
};
692
 
 
693
 
class sys_var_rand_seed2 :public sys_var
694
 
{
695
 
public:
696
 
  sys_var_rand_seed2(sys_var_chain *chain, const char *name_arg,
697
 
                     Binlog_status_enum binlog_status_arg= NOT_IN_BINLOG)
698
 
    :sys_var(name_arg, NULL, binlog_status_arg)
699
 
  { chain_sys_var(chain); }
700
 
  bool update(Session *session, set_var *var);
701
 
  bool check_type(enum_var_type type) { return type == OPT_GLOBAL; }
702
 
};
703
 
 
704
 
 
705
682
class sys_var_collation :public sys_var_session
706
683
{
707
684
public: