diff --git a/text_2_sql/text_2_sql_core/src/text_2_sql_core/data_dictionary/databricks_data_dictionary_creator.py b/text_2_sql/text_2_sql_core/src/text_2_sql_core/data_dictionary/databricks_data_dictionary_creator.py index 35d2105..bdaf8fb 100644 --- a/text_2_sql/text_2_sql_core/src/text_2_sql_core/data_dictionary/databricks_data_dictionary_creator.py +++ b/text_2_sql/text_2_sql_core/src/text_2_sql_core/data_dictionary/databricks_data_dictionary_creator.py @@ -31,7 +31,6 @@ def extract_table_entities_sql_query(self) -> str: FROM {self.catalog}.INFORMATION_SCHEMA.TABLES t ORDER BY EntitySchema, Entity - LIMIT 1 """ @property @@ -44,7 +43,6 @@ def extract_view_entities_sql_query(self) -> str: FROM {self.catalog}.INFORMATION_SCHEMA.VIEWS v ORDER BY EntitySchema, Entity - LIMIT 1 """ def extract_columns_sql_query(self, entity: EntityItem) -> str: