]> git.pld-linux.org Git - packages/mysql.git/blob - mysql-upgrade.patch
- oops, restore
[packages/mysql.git] / mysql-upgrade.patch
1 --- mysql-5.1.28-rc/client/mysql_upgrade.c~     2008-09-14 23:53:11.000000000 +0300
2 +++ mysql-5.1.28-rc/client/mysql_upgrade.c      2008-09-15 00:02:34.047520349 +0300
3 @@ -31,12 +31,12 @@
4  # endif
5  #endif
6  
7 -static char mysql_path[FN_REFLEN];
8 -static char mysqlcheck_path[FN_REFLEN];
9 +static char *mysql_path = "/usr/bin/mysql";
10 +static char *mysqlcheck_path = "/usr/sbin/mysqlcheck";
11  
12  static my_bool opt_force, opt_verbose, debug_info_flag, debug_check_flag;
13  static uint my_end_arg= 0;
14 -static char *opt_user= (char*)"root";
15 +static char *opt_user= (char*)"mysql";
16  
17  static DYNAMIC_STRING ds_args;
18  
19 @@ -761,12 +761,6 @@
20    dynstr_append_os_quoted(&ds_args, "--user=", opt_user, NullS);
21    dynstr_append(&ds_args, " ");
22  
23 -  /* Find mysql */
24 -  find_tool(mysql_path, IF_WIN("mysql.exe", "mysql"), self_name);
25 -
26 -  /* Find mysqlcheck */
27 -  find_tool(mysqlcheck_path, IF_WIN("mysqlcheck.exe", "mysqlcheck"), self_name);
28 -
29    /*
30      Read the mysql_upgrade_info file to check if mysql_upgrade
31      already has been run for this installation of MySQL
This page took 0.04635 seconds and 4 git commands to generate.