Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src_cpp/py_connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,9 @@ Value PyConnection::transformPythonValueAs(const py::handle& val, const LogicalT

Value PyConnection::transformPythonValueFromParameterAs(const py::handle& val,
const LogicalType& type) {
if (val.is_none()) {
return Value::createNullValue(type);
}
switch (type.getLogicalTypeID()) {
case LogicalTypeID::LIST: {
if (ListType::getChildType(type).getLogicalTypeID() == LogicalTypeID::JSON) {
Expand Down
Loading