mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Remove an unused variable that was there since the first implementation
of the stored procedure cursors (materialized on disk). include/mysql_com.h: Remove an unused variable. sql/protocol.cc: net->no_send_eof was not used anywhere.
This commit is contained in:
@ -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));
|
||||
|
Reference in New Issue
Block a user