Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
0.9.59
-
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))) |
{
|
...
|
}
|
|