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 206eb0a commit 2938c18Copy full SHA for 2938c18
src/databricks/sql/session.py
@@ -93,12 +93,13 @@ def _create_backend(
93
http_path: str,
94
all_headers: List[Tuple[str, str]],
95
auth_provider,
96
- _use_arrow_native_complex_types: bool,
+ _use_arrow_native_complex_types: Optional[bool],
97
kwargs: dict,
98
) -> DatabricksClient:
99
"""Create and return the appropriate backend client."""
100
use_sea = kwargs.get("use_sea", False)
101
102
+ databricks_client_class: Type[DatabricksClient]
103
if use_sea:
104
logger.debug("Creating SEA backend client")
105
databricks_client_class = SeaDatabricksClient
0 commit comments