Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
1.1.4
-
None
-
3.10
Description
NULL (None) values are not passed to converter, since they are filtered out in ma_convert_function:
if (!self->connection->converter || value == Py_None)
|
return NULL;
|
Additionally, in fetch functions, the type should be set to MYSQL_TYPE_NULL, if passed data element is NULL.
Thanks to Cole Busby for finding this issue!