Skip to content

Commit

Permalink
Update max_records by order of magnitude (transferwise#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgoering authored Jun 17, 2022
1 parent f18c9e8 commit 1cb4fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target_snowflake/db_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ def get_table_columns(self, table_schemas=None):

# Run everything in one transaction
try:
columns = self.query(queries, max_records=9999)
columns = self.query(queries, max_records=99999)

if not columns:
self.logger.warning('No columns discovered in the schema "%s"',
Expand Down

0 comments on commit 1cb4fbc

Please sign in to comment.