feat(SIP-95): new endpoint for table metadata (#28122)

This commit is contained in:
Beto Dealmeida
2024-04-25 12:23:49 -04:00
committed by GitHub
parent 52f8734662
commit 6cf681df68
71 changed files with 1048 additions and 513 deletions

View File

@@ -132,9 +132,7 @@ class BaseTestChartDataApi(SupersetTestCase):
def quote_name(self, name: str):
if get_main_database().backend in {"presto", "hive"}:
with (
get_example_database().get_inspector_with_context() as inspector
): # E: Ne
with get_example_database().get_inspector() as inspector: # E: Ne
return inspector.engine.dialect.identifier_preparer.quote_identifier(
name
)