diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-09-22 21:51:17 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-09-22 21:51:17 -0600 |
commit | 30bba5dffcc400268446b12fa8ed8b875737c802 (patch) | |
tree | e4a77b49f0d4e78f22c4bc9ef9ac9b30a8a00624 /include/mysql_com.h | |
parent | 08b94f415bbce53a9bbc5a11330b7c8fadf92b81 (diff) | |
parent | 5e0851e1b37debb59dbe184fcc3485470872ac64 (diff) | |
download | mariadb-git-30bba5dffcc400268446b12fa8ed8b875737c802.tar.gz |
merged
include/Makefile.am:
Auto merged
include/mysql.h:
Auto merged
include/mysql_com.h:
Auto merged
client/Makefile.am:
Auto merged
libmysql/libmysql.c:
Auto merged
mysql-test/mysql-test-run.sh:
Auto merged
sql/Makefile.am:
Auto merged
sql/sql_lex.h:
Auto merged
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r-- | include/mysql_com.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index 6128a29ed5a..05a0e102bd1 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -113,10 +113,12 @@ typedef struct st_net { unsigned int last_errno,max_packet,timeout,pkt_nr; unsigned char error; my_bool return_errno,compress; - my_bool no_send_ok; /* needed if we are doing several - queries in one command ( as in LOAD TABLE ... FROM MASTER ), - and do not want to confuse the client with OK at the wrong time - */ + /* + The following variable is set if we are doing several queries in one + command ( as in LOAD TABLE ... FROM MASTER ), + and do not want to confuse the client with OK at the wrong time + */ + my_bool no_send_ok; unsigned long remain_in_buf,length, buf_length, where_b; unsigned int *return_status; unsigned char reading_or_writing; |