Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
None
Description
After MDEV-4088 the version string in the first server handshake packet has a fake version prefix. The connector should remove it and only show the real version to the client. It could be done as
if (mysql->server_capabilities & CLIENT_PLUGIN_AUTH &&
|
strncmp(mysql->server_version, "5.5.5-", 6) == 0)
|
mysql->server_version+= 6;
|