Skip to content

Commit af8f74e

Browse files
remove fetch phase methods
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 699942d commit af8f74e

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/databricks/sql/backend/sea/backend.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ class SeaDatabricksClient(DatabricksClient):
8787
STATEMENT_PATH = BASE_PATH + "statements"
8888
STATEMENT_PATH_WITH_ID = STATEMENT_PATH + "/{}"
8989
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/{}"
9290

9391
def __init__(
9492
self,
@@ -278,19 +276,6 @@ def get_default_session_configuration_value(name: str) -> Optional[str]:
278276
"""
279277
return ALLOWED_SESSION_CONF_TO_DEFAULT_VALUES_MAP.get(name.upper())
280278

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-
294279
@staticmethod
295280
def get_allowed_session_configurations() -> List[str]:
296281
"""

0 commit comments

Comments
 (0)