diff options
author | unknown <monty@hundin.mysql.fi> | 2001-06-02 00:03:16 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-06-02 00:03:16 +0300 |
commit | 7c077e68f663e082924a359ecd3cfdfdedd88967 (patch) | |
tree | daa8be0909526f70ad0e41daf9d281673f2ca826 /sql/net_pkg.cc | |
parent | 455b6952d60c07245d604b2f3fd7d41a63fa89ae (diff) | |
download | mariadb-git-7c077e68f663e082924a359ecd3cfdfdedd88967.tar.gz |
Fixed bug that caused client to hang because mysqld never did send an
error message if the table open or the index creation failed.
Updated portuguese error messages.
Fix for OS/2 that affected CHECK TABLE.
Docs/manual.texi:
Changelog.
libmysql/errmsg.c:
Updated portuguese error messages
mysys/my_copy.c:
Fix for OS/2
sql/net_pkg.cc:
cleanup
sql/share/portuguese/errmsg.txt:
Updated portuguese error messages
sql/slave.cc:
Cleanup.
Fixed bug that caused client to hang because mysqld never did
send an error message if the table open or the index creation failed.
sql/sql_parse.cc:
Moved handling of 'no_send_ok' to fetch_nx_table.
sql/sql_table.cc:
Cleanup.
Diffstat (limited to 'sql/net_pkg.cc')
-rw-r--r-- | sql/net_pkg.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/net_pkg.cc b/sql/net_pkg.cc index 073c716d793..0b50b34c7bd 100644 --- a/sql/net_pkg.cc +++ b/sql/net_pkg.cc @@ -140,7 +140,7 @@ net_printf(NET *net, uint errcode, ...) void send_ok(NET *net,ha_rows affected_rows,ulonglong id,const char *message) { - if(net->no_send_ok) + if (net->no_send_ok) // hack for re-parsing queries return; char buff[MYSQL_ERRMSG_SIZE+10],*pos; |