@@ -603,7 +603,7 @@ def get_catalogs(
603
603
max_rows : int ,
604
604
max_bytes : int ,
605
605
cursor : "Cursor" ,
606
- ) -> "ResultSet" :
606
+ ):
607
607
"""Not implemented yet."""
608
608
raise NotImplementedError ("get_catalogs is not yet implemented for SEA backend" )
609
609
@@ -615,7 +615,7 @@ def get_schemas(
615
615
cursor : "Cursor" ,
616
616
catalog_name : Optional [str ] = None ,
617
617
schema_name : Optional [str ] = None ,
618
- ) -> "ResultSet" :
618
+ ):
619
619
"""Not implemented yet."""
620
620
raise NotImplementedError ("get_schemas is not yet implemented for SEA backend" )
621
621
@@ -629,7 +629,7 @@ def get_tables(
629
629
schema_name : Optional [str ] = None ,
630
630
table_name : Optional [str ] = None ,
631
631
table_types : Optional [List [str ]] = None ,
632
- ) -> "ResultSet" :
632
+ ):
633
633
"""Not implemented yet."""
634
634
raise NotImplementedError ("get_tables is not yet implemented for SEA backend" )
635
635
@@ -643,6 +643,6 @@ def get_columns(
643
643
schema_name : Optional [str ] = None ,
644
644
table_name : Optional [str ] = None ,
645
645
column_name : Optional [str ] = None ,
646
- ) -> "ResultSet" :
646
+ ):
647
647
"""Not implemented yet."""
648
648
raise NotImplementedError ("get_columns is not yet implemented for SEA backend" )
0 commit comments