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
7f553f34
Commit
7f553f34
authored
Sep 05, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge omega.weblab:/home/malff/TREE/mysql-5.1-base
into omega.weblab:/home/malff/TREE/mysql-5.1-rt-merge
parents
41ae90df
700d8b1f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
client/mysqlslap.c
client/mysqlslap.c
+6
-0
No files found.
client/mysqlslap.c
View file @
7f553f34
...
...
@@ -1673,6 +1673,7 @@ static int
run_statements
(
MYSQL
*
mysql
,
statement
*
stmt
)
{
statement
*
ptr
;
MYSQL_RES
*
result
;
DBUG_ENTER
(
"run_statements"
);
for
(
ptr
=
stmt
;
ptr
&&
ptr
->
length
;
ptr
=
ptr
->
next
)
...
...
@@ -1683,6 +1684,11 @@ run_statements(MYSQL *mysql, statement *stmt)
my_progname
,
(
uint
)
ptr
->
length
,
ptr
->
string
,
mysql_error
(
mysql
));
exit
(
1
);
}
if
(
mysql_field_count
(
mysql
))
{
result
=
mysql_store_result
(
mysql
);
mysql_free_result
(
result
);
}
}
DBUG_RETURN
(
0
);
...
...
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