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
ee76a12c
Commit
ee76a12c
authored
Apr 11, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Protect from empty --query argument
parent
52c9feff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client/mysqlslap.c
client/mysqlslap.c
+2
-2
No files found.
client/mysqlslap.c
View file @
ee76a12c
...
...
@@ -1038,7 +1038,7 @@ run_scheduler(stats *sptr, statement *stmts, uint concur, ulonglong limit)
case
0
:
/* child */
DBUG_PRINT
(
"info"
,
(
"fork returned 0, calling task(
\"
%s
\"
), pid %d gid %d"
,
stmts
->
string
,
pid
,
getgid
()));
stmts
?
stmts
->
string
:
""
,
pid
,
getgid
()));
if
(
verbose
>=
2
)
fprintf
(
stderr
,
"%s: fork returned 0, calling task pid %d gid %d
\n
"
,
...
...
@@ -1124,7 +1124,7 @@ run_task(thread_context *con)
statement
*
ptr
;
DBUG_ENTER
(
"run_task"
);
DBUG_PRINT
(
"info"
,
(
"task script
\"
%s
\"
"
,
con
->
stmt
->
string
));
DBUG_PRINT
(
"info"
,
(
"task script
\"
%s
\"
"
,
con
->
stmt
?
con
->
stmt
->
string
:
""
));
if
(
!
(
mysql
=
mysql_init
(
NULL
)))
goto
end
;
...
...
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