diff options
author | unknown <monty@mashka.mysql.fi> | 2003-01-28 08:51:03 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-01-28 08:51:03 +0200 |
commit | f1256433fe4e92fb59cb5e2ef9c66af362f02939 (patch) | |
tree | cfcd7ea8160cf2c79be8d73ccca32445e830770a /libmysql/libmysql.c | |
parent | 8c613c2c9168efa89eefcc82b1271e6731e526a7 (diff) | |
parent | 7dda787d602353c93962666634062e5dd112f87c (diff) | |
download | mariadb-git-f1256433fe4e92fb59cb5e2ef9c66af362f02939.tar.gz |
Merge with 3.23.56 (Replace manual with 'empty' document)
Fix for bug when using auto_increment column and LAST_INSERT_ID()
Makefile.am:
Auto merged
ltconfig:
Auto merged
innobase/btr/btr0cur.c:
Auto merged
sql/Makefile.am:
Auto merged
Docs/Makefile.am:
Merge with 3.23.56
Docs/manual.texi:
Merge with 3.23.56 (Replace manual with 'empty' document)
libmysql/libmysql.c:
Use local version
sql/log.cc:
Fix for bug when using auto_increment column and LAST_INSERT_ID()
sql/sql_base.cc:
Use local version
Diffstat (limited to 'libmysql/libmysql.c')
-rw-r--r-- | libmysql/libmysql.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index 45dde457fd5..10cfb5ec88c 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -486,7 +486,8 @@ simple_command(MYSQL *mysql,enum enum_server_command command, const char *arg, if (net_write_command(net,(uchar) command,arg, length ? length : (ulong) strlen(arg))) { - DBUG_PRINT("error",("Can't send command to server. Error: %d",socket_errno)); + DBUG_PRINT("error",("Can't send command to server. Error: %d", + socket_errno)); if (net->last_errno == ER_NET_PACKET_TOO_LARGE) { net->last_errno=CR_NET_PACKET_TOO_LARGE; |