Commit e0010838 authored by unknown's avatar unknown

Fix for bug #10226 (mysql_get_client_version not implemented)


libmysqld/libmysqld.c:
  mysql_get_client_version implementation added
parent 90e41fac
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment