Peter Burnashov

Results 3 comments of Peter Burnashov

I get the same error, in my case I read 100K records with a cursor in chunks of 100 and the error is thrown when it reaches 36800 rows.

con = snowflake.connector.connect(**options) cursor = connection.execute_string("select * from testtable")[-1] Then if I check the cursor.row_count property (going by memory) it shows 36000, given that testtable has 1M+ rows. Looping with...