@@ -645,7 +645,7 @@ def get_schemas(
645
645
if not catalog_name :
646
646
raise ValueError ("Catalog name is required for get_schemas" )
647
647
648
- operation = f"SHOW SCHEMAS IN ` { catalog_name } ` "
648
+ operation = f"SHOW SCHEMAS IN { catalog_name } "
649
649
650
650
if schema_name :
651
651
operation += f" LIKE '{ schema_name } '"
@@ -683,7 +683,7 @@ def get_tables(
683
683
operation = "SHOW TABLES IN " + (
684
684
"ALL CATALOGS"
685
685
if catalog_name in [None , "*" , "%" ]
686
- else f"CATALOG ` { catalog_name } ` "
686
+ else f"CATALOG { catalog_name } "
687
687
)
688
688
689
689
if schema_name :
@@ -706,7 +706,7 @@ def get_tables(
706
706
)
707
707
assert result is not None , "execute_command returned None in synchronous mode"
708
708
709
- # Apply client-side filtering by table_types if specified
709
+ # Apply client-side filtering by table_types
710
710
from databricks .sql .backend .filters import ResultSetFilter
711
711
712
712
result = ResultSetFilter .filter_tables_by_type (result , table_types )
@@ -728,7 +728,7 @@ def get_columns(
728
728
if not catalog_name :
729
729
raise ValueError ("Catalog name is required for get_columns" )
730
730
731
- operation = f"SHOW COLUMNS IN CATALOG ` { catalog_name } ` "
731
+ operation = f"SHOW COLUMNS IN CATALOG { catalog_name } "
732
732
733
733
if schema_name :
734
734
operation += f" SCHEMA LIKE '{ schema_name } '"
0 commit comments