@@ -604,8 +604,8 @@ def get_catalogs(
604
604
max_bytes : int ,
605
605
cursor : "Cursor" ,
606
606
) -> "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" )
609
609
610
610
def get_schemas (
611
611
self ,
@@ -616,8 +616,8 @@ def get_schemas(
616
616
catalog_name : Optional [str ] = None ,
617
617
schema_name : Optional [str ] = None ,
618
618
) -> "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" )
621
621
622
622
def get_tables (
623
623
self ,
@@ -630,8 +630,8 @@ def get_tables(
630
630
table_name : Optional [str ] = None ,
631
631
table_types : Optional [List [str ]] = None ,
632
632
) -> "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" )
635
635
636
636
def get_columns (
637
637
self ,
@@ -644,5 +644,5 @@ def get_columns(
644
644
table_name : Optional [str ] = None ,
645
645
column_name : Optional [str ] = None ,
646
646
) -> "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