From c969f78b7c4c82c75ce8bfa033df4159cfa94e33 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 15 Oct 2007 15:45:20 +0400 Subject: [PATCH] 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. --- include/mysql_com.h | 2 +- sql/protocol.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mysql_com.h b/include/mysql_com.h index 5850d48fbf5..f76486b9ec2 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -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 diff --git a/sql/protocol.cc b/sql/protocol.cc index 2ed241c4c98..9d473912ba3 100644 --- a/sql/protocol.cc +++ b/sql/protocol.cc @@ -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));