Skip to content

Commit 1e21434

Browse files
move docstring of DatabricksClient within class
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent d759050 commit 1e21434

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/databricks/sql/backend/databricks_client.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
"""
2-
Abstract client interface for interacting with Databricks SQL services.
3-
4-
Implementations of this class are responsible for:
5-
- Managing connections to Databricks SQL services
6-
- Executing SQL queries and commands
7-
- Retrieving query results
8-
- Fetching metadata about catalogs, schemas, tables, and columns
9-
"""
10-
111
from __future__ import annotations
122

133
from abc import ABC, abstractmethod
@@ -22,6 +12,16 @@
2212

2313

2414
class DatabricksClient(ABC):
15+
"""
16+
Abstract client interface for interacting with Databricks SQL services.
17+
18+
Implementations of this class are responsible for:
19+
- Managing connections to Databricks SQL services
20+
- Executing SQL queries and commands
21+
- Retrieving query results
22+
- Fetching metadata about catalogs, schemas, tables, and columns
23+
"""
24+
2525
# == Connection and Session Management ==
2626
@abstractmethod
2727
def open_session(

0 commit comments

Comments
 (0)