Skip to content

Commit 38e4b5c

Browse files
reduce diff
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent ed446a0 commit 38e4b5c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,8 @@ def get_catalogs(
604604
max_bytes: int,
605605
cursor: "Cursor",
606606
) -> "ResultSet":
607-
"""Get available catalogs by executing 'SHOW CATALOGS'."""
608-
raise NotImplementedError("get_catalogs is not implemented for SEA backend")
607+
"""Not implemented yet."""
608+
raise NotImplementedError("get_catalogs is not yet implemented for SEA backend")
609609

610610
def get_schemas(
611611
self,
@@ -616,8 +616,8 @@ def get_schemas(
616616
catalog_name: Optional[str] = None,
617617
schema_name: Optional[str] = None,
618618
) -> "ResultSet":
619-
"""Get schemas by executing 'SHOW SCHEMAS IN catalog [LIKE pattern]'."""
620-
raise NotImplementedError("get_schemas is not implemented for SEA backend")
619+
"""Not implemented yet."""
620+
raise NotImplementedError("get_schemas is not yet implemented for SEA backend")
621621

622622
def get_tables(
623623
self,
@@ -630,8 +630,8 @@ def get_tables(
630630
table_name: Optional[str] = None,
631631
table_types: Optional[List[str]] = None,
632632
) -> "ResultSet":
633-
"""Get tables by executing 'SHOW TABLES IN catalog [SCHEMA LIKE pattern] [LIKE pattern]'."""
634-
raise NotImplementedError("get_tables is not implemented for SEA backend")
633+
"""Not implemented yet."""
634+
raise NotImplementedError("get_tables is not yet implemented for SEA backend")
635635

636636
def get_columns(
637637
self,
@@ -644,5 +644,5 @@ def get_columns(
644644
table_name: Optional[str] = None,
645645
column_name: Optional[str] = None,
646646
) -> "ResultSet":
647-
"""Get columns by executing 'SHOW COLUMNS IN CATALOG catalog [SCHEMA LIKE pattern] [TABLE LIKE pattern] [LIKE pattern]'."""
648-
raise NotImplementedError("get_columns is not implemented for SEA backend")
647+
"""Not implemented yet."""
648+
raise NotImplementedError("get_columns is not yet implemented for SEA backend")

0 commit comments

Comments
 (0)