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 87d73da commit f74836dCopy full SHA for f74836d
src/databricks/sql/backend/sea/result_set.py
@@ -27,6 +27,8 @@
27
class SeaResultSet(ResultSet):
28
"""ResultSet implementation for SEA backend."""
29
30
+ backend: SeaDatabricksClient
31
+
32
def __init__(
33
self,
34
connection: Connection,
@@ -83,10 +85,6 @@ def __init__(
83
85
arrow_schema_bytes=execute_response.arrow_schema_bytes,
84
86
)
87
- assert isinstance(
- self.backend, SeaDatabricksClient
88
- ), "SeaResultSet must be used with SeaDatabricksClient"
89
-
90
def _convert_complex_types_to_string(
91
self, rows: "pyarrow.Table"
92
) -> "pyarrow.Table":
0 commit comments