Details
-
New Feature
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Do
-
None
-
None
Description
A user has reported that he does not like having to use the following pattern a lot with the Python bulk load API:
if val is None:
|
bulk.setNull()
|
else:
|
bulk.setColumn()
|
He suggested that it might be worthwhile to make it so that the user only has to execute bulk.setColumn() with the Python API, and any required NULL/None checks get moved to the underlying C API.