From 1cb4fbc2319957549a63df545f3ba84296029f3d Mon Sep 17 00:00:00 2001 From: scottgoering Date: Fri, 17 Jun 2022 02:37:19 -0500 Subject: [PATCH] Update max_records by order of magnitude (#290) --- target_snowflake/db_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target_snowflake/db_sync.py b/target_snowflake/db_sync.py index 64efcac9..ffac46c5 100644 --- a/target_snowflake/db_sync.py +++ b/target_snowflake/db_sync.py @@ -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"',