From c1777cb28b5b598b57855bc1dd9a2a7c9fd55364 Mon Sep 17 00:00:00 2001 From: "hf@deer.(none)" <> Date: Thu, 28 Jul 2005 19:25:48 +0500 Subject: [PATCH] Fix for bug #10226 (mysql_get_client_version not implemented) --- libmysqld/libmysqld.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c index 9c79536b2e0..aa8932f798b 100644 --- a/libmysqld/libmysqld.c +++ b/libmysqld/libmysqld.c @@ -1795,6 +1795,10 @@ mysql_get_client_info(void) 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)