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
227e13c4
Commit
227e13c4
authored
Oct 15, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unused variable that was there since the first implementation
of the stored procedure cursors (materialized on disk).
parent
0dce64d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/mysql_com.h
include/mysql_com.h
+1
-1
sql/protocol.cc
sql/protocol.cc
+1
-1
No files found.
include/mysql_com.h
View file @
227e13c4
...
...
@@ -203,7 +203,7 @@ typedef struct st_net {
unsigned
char
reading_or_writing
;
char
save_char
;
my_bool
no_send_ok
;
/* For SPs and other things that do multiple stmts */
my_bool
no_send_eof
;
/* For SPs' first version read-only cursors
*/
my_bool
unused
;
/* Please remove with the next incompatible ABI change
*/
my_bool
compress
;
/*
Set if OK packet is already sent, and we do not need to send error
...
...
sql/protocol.cc
View file @
227e13c4
...
...
@@ -346,7 +346,7 @@ send_eof(THD *thd)
{
NET
*
net
=
&
thd
->
net
;
DBUG_ENTER
(
"send_eof"
);
if
(
net
->
vio
!=
0
&&
!
net
->
no_send_eof
)
if
(
net
->
vio
!=
0
)
{
write_eof_packet
(
thd
,
net
);
VOID
(
net_flush
(
net
));
...
...
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