Skip to content
Open
Changes from 5 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
7 changes: 4 additions & 3 deletions src/databricks/sql/parameters/native.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ class DatabricksSupportedType(Enum):
bool,
decimal.Decimal,
None,
list,
dict,
tuple,
list["TAllowedParameterValue"],
# Should the dict key type be str or "TAllowedParameterValue"? Not 100% sure.
dict[str, "TAllowedParameterValue"],
tuple["TAllowedParameterValue", ...],
]


Expand Down
Loading