From: Date: July 28 2005 4:25pm Subject: bk commit into 4.0 tree (hf:1.2127) BUG#10226 List-Archive: http://lists.mysql.com/internals/27680 X-Bug: 10226 Message-Id: <200507281425.j6SEPo1q013494@localhost.localdomain> Below is the list of changes that have just been committed into a local 4.0 repository of hf. When hf does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2127 05/07/28 19:25:48 hf@deer.(none) +1 -0 Fix for bug #10226 (mysql_get_client_version not implemented) libmysqld/libmysqld.c 1.24 05/07/28 19:25:34 hf@deer.(none) +4 -0 mysql_get_client_version implementation added # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: hf # Host: deer.(none) # Root: /home/hf/work/mysql-4.0.10226 --- 1.23/libmysqld/libmysqld.c Wed Jul 21 18:23:11 2004 +++ 1.24/libmysqld/libmysqld.c Thu Jul 28 19:25:34 2005 @@ -1795,6 +1795,10 @@ return MYSQL_SERVER_VERSION; } +ulong STDCALL mysql_get_client_version(void) +{ + return MYSQL_VERSION_ID; +} int STDCALL mysql_options(MYSQL *mysql,enum mysql_option option, const char *arg)