Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.9.59
-
Fix Version/s: 1.0.0
-
Labels:None
Description
To check if the server supports bulk operations we need to check the extended capability flag instead of server version number:
mariadb_get_infov(self->stmt->mysql,
|
MARIADB_CONNECTION_EXTENDED_SERVER_CAPABILITIES,
|
&extended_server_capabilities);
|
if (!(extended_server_capabilities & (MARIADB_CLIENT_STMT_BULK_OPERATIONS >> 32))) |
{
|
...
|
}
|
|