~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/mysqld.cc

  • Committer: Stewart Smith
  • Date: 2008-07-08 09:49:06 UTC
  • mto: (54.1.6 drizzle-smack)
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: stewart@flamingspork.com-20080708094906-v66rmocdte3txwxv
remove old_password support from server (patch 1)

removes OLD_PASSWORD function, variable, parser bits.

need to still remove bits from protocol

Show diffs side-by-side

added added

removed removed

Lines of Context:
3329
3329
  OPT_SYNC_REPLICATION_TIMEOUT,
3330
3330
  OPT_ENABLE_SHARED_MEMORY,
3331
3331
  OPT_SHARED_MEMORY_BASE_NAME,
3332
 
  OPT_OLD_PASSWORDS,
3333
3332
  OPT_OLD_ALTER_TABLE,
3334
3333
  OPT_EXPIRE_LOGS_DAYS,
3335
3334
  OPT_GROUP_CONCAT_MAX_LEN,
3677
3676
   (uchar**) &global_system_variables.old_alter_table,
3678
3677
   (uchar**) &max_system_variables.old_alter_table, 0, GET_BOOL, NO_ARG,
3679
3678
   0, 0, 0, 0, 0, 0},
3680
 
  {"old-passwords", OPT_OLD_PASSWORDS, "Use old password encryption method (needed for 4.0 and older clients).",
3681
 
   (uchar**) &global_system_variables.old_passwords,
3682
 
   (uchar**) &max_system_variables.old_passwords, 0, GET_BOOL, NO_ARG,
3683
 
   0, 0, 0, 0, 0, 0},
3684
3679
  {"old-style-user-limits", OPT_OLD_STYLE_USER_LIMITS,
3685
3680
   "Enable old-style user limits (before 5.0.3 user resources were counted per each user+host vs. per account)",
3686
3681
   (uchar**) &opt_old_style_user_limits, (uchar**) &opt_old_style_user_limits,
4623
4618
  max_system_variables.select_limit=    (ulonglong) HA_POS_ERROR;
4624
4619
  global_system_variables.max_join_size= (ulonglong) HA_POS_ERROR;
4625
4620
  max_system_variables.max_join_size=   (ulonglong) HA_POS_ERROR;
4626
 
  global_system_variables.old_passwords= 0;
4627
4621
  global_system_variables.old_alter_table= 0;
4628
4622
  global_system_variables.binlog_format= BINLOG_FORMAT_UNSPEC;
4629
4623
  /*