summaryrefslogtreecommitdiff
path: root/include/mysql.h
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2005-04-13 12:22:20 +0200
committerunknown <msvensson@neptunus.(none)>2005-04-13 12:22:20 +0200
commit2189e5e7bd8530eeb1f866a6304651f54cdcad75 (patch)
tree0c4e2952b0743607c4188361b2f0b86fca004c16 /include/mysql.h
parent5630f0731ab020471108c67e7ae962ba6eaef625 (diff)
downloadmariadb-git-2189e5e7bd8530eeb1f866a6304651f54cdcad75.tar.gz
BUG#9391 mysqlshow prints incorrect "rows" information
- Removed use of mysql->extra_info - Removed unused function send_records_num VC++Files/winmysqladmin/mysql.h: Comment extra_info as not used anymore client/mysqlshow.c: Remove use of extra info. Instead read number of records in table using SELECT COUNT(*) include/mysql.h: Comment extra_info as not used anymore libmysqld/lib_sql.cc: Removed unused function send_records_num sql-common/client.c: Remove use of extra_info since number of records is not sent in the protocol anymore sql/protocol.cc: Removed unused function send_records_num sql/protocol.h: Removed unused function send_records_num
Diffstat (limited to 'include/mysql.h')
-rw-r--r--include/mysql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h
index b87b865608e..24f1961a260 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -231,7 +231,7 @@ typedef struct st_mysql
MEM_ROOT field_alloc;
my_ulonglong affected_rows;
my_ulonglong insert_id; /* id if insert on table with NEXTNR */
- my_ulonglong extra_info; /* Used by mysqlshow */
+ my_ulonglong extra_info; /* Not used */
unsigned long thread_id; /* Id for connection in server */
unsigned long packet_length;
unsigned int port;