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
ae03f5d3
Commit
ae03f5d3
authored
Jan 16, 2007
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't reuse prepared statements if running with reconnect enabled
parent
f507bb2c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
client/mysqltest.c
client/mysqltest.c
+10
-0
No files found.
client/mysqltest.c
View file @
ae03f5d3
...
...
@@ -5061,6 +5061,14 @@ end:
dynstr_free
(
&
ds_execute_warnings
);
}
/* Close the statement if - no reconnect, need new prepare */
if
(
mysql
->
reconnect
)
{
mysql_stmt_close
(
stmt
);
cur_con
->
stmt
=
NULL
;
}
/*
We save the return code (mysql_stmt_errno(stmt)) from the last call sent
to the server into the mysqltest builtin variable $mysql_errno. This
...
...
@@ -5864,6 +5872,8 @@ int main(int argc, char **argv)
break
;
case
Q_ENABLE_RECONNECT
:
set_reconnect
(
&
cur_con
->
mysql
,
1
);
/* Close any open statements - no reconnect, need new prepare */
close_statements
();
break
;
case
Q_DISABLE_PARSING
:
if
(
parsing_disabled
==
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