We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae5f2db commit 01452bcCopy full SHA for 01452bc
src/databricks/sql/backend/sea/models/requests.py
@@ -54,8 +54,8 @@ def to_dict(self) -> Dict[str, Any]:
54
result["parameters"] = [
55
{
56
"name": param.name,
57
- **({"value": param.value} if param.value is not None else {}),
58
- **({"type": param.type} if param.type is not None else {}),
+ "value": param.value,
+ "type": param.type,
59
}
60
for param in self.parameters
61
]
0 commit comments