Skip to content

Commit

Permalink
Remove limit (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenConstable9 authored Dec 4, 2024
1 parent 69de780 commit bafc8cb
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit bafc8cb

Please sign in to comment.