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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
345054c9
Commit
345054c9
authored
Nov 03, 2009
by
Timothy Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a few comments to clarify do_query() return values in mysql_secure_installation.pl
parent
e29b7ef5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
scripts/mysql_secure_installation.pl.in
scripts/mysql_secure_installation.pl.in
+4
-0
No files found.
scripts/mysql_secure_installation.pl.in
View file @
345054c9
...
...
@@ -129,7 +129,11 @@ sub do_query {
my
$query
=
shift
;
write_file
(
$command
,
$query
);
my
$rv
=
system
("
$mysql
--defaults-file=
$config
<
$command
");
# system() returns -1 if exec fails (e.g., command not found, etc.); die
# in this case because nothing is going to work
die
"
Failed to execute mysql client '
$mysql
'
\n
"
if
$rv
==
-
1
;
# Return true if query executed OK, or false if there was some problem
# (for example, SQL error or wrong password)
return
(
$rv
==
0
?
1
:
undef
);
}
...
...
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