Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include = ["CHANGELOG.md"]
python = "^3.8.0"
thrift = ">=0.16.0,<0.21.0"
pandas = [
{ version = ">=1.2.5,<2.2.0", python = ">=3.8" }
{ version = ">=1.2.5,<2.3.0", python = ">=3.8" }
]
pyarrow = ">=14.0.1,<17"

Expand Down
2 changes: 1 addition & 1 deletion src/databricks/sql/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ def _convert_arrow_table(self, table):
timestamp_as_object=True,
)

res = df.to_numpy(na_value=None)
res = df.to_numpy(na_value=None, dtype='object')
return [ResultRow(*v) for v in res]

@property
Expand Down