From d5253828a750884826a9bfbd5952821d24e99dd8 Mon Sep 17 00:00:00 2001 From: Mesh Date: Thu, 5 Jun 2025 10:14:04 -0500 Subject: [PATCH] feat: added option for api auth --- src/webapp/databricks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webapp/databricks.py b/src/webapp/databricks.py index 8acb3be4..0b57421f 100644 --- a/src/webapp/databricks.py +++ b/src/webapp/databricks.py @@ -223,7 +223,7 @@ def fetch_table_data( # Construct the fully qualified table name schema_name = databricksify_inst_name(inst_name) fully_qualified_table = ( - f"`{catalog_name}`.`{schema_name}__silver`.`{table_name}`" + f"`{catalog_name}`.`{schema_name}_silver`.`{table_name}`" ) sql_query = f"SELECT * FROM {fully_qualified_table} LIMIT {limit}"