File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
src/databricks/sql/backend/sea Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -87,8 +87,6 @@ class SeaDatabricksClient(DatabricksClient):
87
87
STATEMENT_PATH = BASE_PATH + "statements"
88
88
STATEMENT_PATH_WITH_ID = STATEMENT_PATH + "/{}"
89
89
CANCEL_STATEMENT_PATH_WITH_ID = STATEMENT_PATH + "/{}/cancel"
90
- CHUNKS_PATH_WITH_ID = STATEMENT_PATH + "/{}/result/chunks"
91
- CHUNK_PATH_WITH_ID_AND_INDEX = STATEMENT_PATH + "/{}/result/chunks/{}"
92
90
93
91
def __init__ (
94
92
self ,
@@ -278,19 +276,6 @@ def get_default_session_configuration_value(name: str) -> Optional[str]:
278
276
"""
279
277
return ALLOWED_SESSION_CONF_TO_DEFAULT_VALUES_MAP .get (name .upper ())
280
278
281
- @staticmethod
282
- def is_session_configuration_parameter_supported (name : str ) -> bool :
283
- """
284
- Check if a session configuration parameter is supported.
285
-
286
- Args:
287
- name: The name of the session configuration parameter
288
-
289
- Returns:
290
- True if the parameter is supported, False otherwise
291
- """
292
- return name .upper () in ALLOWED_SESSION_CONF_TO_DEFAULT_VALUES_MAP
293
-
294
279
@staticmethod
295
280
def get_allowed_session_configurations () -> List [str ]:
296
281
"""
You can’t perform that action at this time.
0 commit comments