Skip to content

Commit bafc8cb

Browse files
Remove limit (#83)
1 parent 69de780 commit bafc8cb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

text_2_sql/text_2_sql_core/src/text_2_sql_core/data_dictionary/databricks_data_dictionary_creator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def extract_table_entities_sql_query(self) -> str:
3131
FROM
3232
{self.catalog}.INFORMATION_SCHEMA.TABLES t
3333
ORDER BY EntitySchema, Entity
34-
LIMIT 1
3534
"""
3635

3736
@property
@@ -44,7 +43,6 @@ def extract_view_entities_sql_query(self) -> str:
4443
FROM
4544
{self.catalog}.INFORMATION_SCHEMA.VIEWS v
4645
ORDER BY EntitySchema, Entity
47-
LIMIT 1
4846
"""
4947

5048
def extract_columns_sql_query(self, entity: EntityItem) -> str:

0 commit comments

Comments
 (0)