Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fc144204
Commit
fc144204
authored
Nov 21, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port mysql_upgrade to be tested on windows
parent
4dc0aeb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
14 deletions
+21
-14
client/mysql_upgrade.c
client/mysql_upgrade.c
+21
-14
No files found.
client/mysql_upgrade.c
View file @
fc144204
...
...
@@ -31,10 +31,12 @@
const
char
*
mysqlcheck_name
=
"mysqlcheck.exe"
;
const
char
*
mysql_name
=
"mysql.exe"
;
const
char
*
mysqld_name
=
"mysqld.exe"
;
#define EXTRA_CLIENT_PATHS "client/release", "client/debug"
#else
const
char
*
mysqlcheck_name
=
"mysqlcheck"
;
const
char
*
mysql_name
=
"mysql"
;
const
char
*
mysqld_name
=
"mysqld"
;
#define EXTRA_CLIENT_PATHS "client"
#endif
/*__WIN__*/
extern
TYPELIB
sql_protocol_typelib
;
...
...
@@ -497,8 +499,9 @@ int main(int argc, char **argv)
"mysql"
,
NullS
))
{
ret
=
1
;
puts
(
"Can't find data directory. Please restart with"
" --datadir=path-to-writable-data-dir"
);
fprintf
(
stderr
,
"Can't find data directory. Please restart with"
" --datadir=path-to-writable-data-dir"
);
goto
error
;
}
...
...
@@ -541,11 +544,13 @@ int main(int argc, char **argv)
}
if
(
find_file
(
mysqlcheck_name
,
basedir
,
MYF
(
0
),
path
,
sizeof
(
path
),
"bin"
,
"client"
,
NullS
))
"bin"
,
EXTRA_CLIENT_PATHS
,
NullS
))
{
ret
=
1
;
printf
(
"Can't find program '%s'
\n
"
,
mysqlcheck_name
);
puts
(
"Please restart with --basedir=mysql-install-directory"
);
fprintf
(
stderr
,
"Can't find program '%s'
\n
"
"Please restart with --basedir=mysql-install-directory"
,
mysqlcheck_name
);
goto
error
;
}
else
...
...
@@ -567,7 +572,7 @@ int main(int argc, char **argv)
ret
=
system
(
cmdline
.
str
);
if
(
ret
)
{
printf
(
"Error executing '%s'
\n
"
,
cmdline
.
str
);
fprintf
(
stderr
,
"Error executing '%s'
\n
"
,
cmdline
.
str
);
goto
error
;
}
...
...
@@ -578,12 +583,13 @@ int main(int argc, char **argv)
fix_priv_tables:
if
(
find_file
(
mysql_name
,
basedir
,
MYF
(
0
),
path
,
sizeof
(
path
),
"bin"
,
"client"
,
NullS
))
"bin"
,
EXTRA_CLIENT_PATHS
,
NullS
))
{
ret
=
1
;
puts
(
"Could not find MySQL command-line client (mysql).
\n
"
"Please use --basedir to specify the directory"
" where MySQL is installed."
);
fprintf
(
stderr
,
"Could not find MySQL command-line client (mysql).
\n
"
"Please use --basedir to specify the directory"
" where MySQL is installed."
);
goto
error
;
}
else
...
...
@@ -598,9 +604,10 @@ fix_priv_tables:
"share/mysql"
,
NullS
))
{
ret
=
1
;
puts
(
"Could not find file "
MYSQL_FIX_PRIV_TABLES_NAME
"
\n
"
"Please use --basedir to specify the directory"
" where MySQL is installed"
);
fprintf
(
stderr
,
"Could not find file "
MYSQL_FIX_PRIV_TABLES_NAME
"
\n
"
"Please use --basedir to specify the directory"
" where MySQL is installed"
);
goto
error
;
}
else
...
...
@@ -621,7 +628,7 @@ fix_priv_tables:
ret
=
system
(
cmdline
.
str
);
if
(
ret
)
printf
(
"Error executing '%s'
\n
"
,
cmdline
.
str
);
fprintf
(
stderr
,
"Error executing '%s'
\n
"
,
cmdline
.
str
);
error:
dynstr_free
(
&
cmdline
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment