diff --git a/tests/integration/dbapi/async/V2/test_queries_async.py b/tests/integration/dbapi/async/V2/test_queries_async.py index e053e5c8a5..2acf26716a 100644 --- a/tests/integration/dbapi/async/V2/test_queries_async.py +++ b/tests/integration/dbapi/async/V2/test_queries_async.py @@ -134,7 +134,7 @@ async def test_long_query( with connection.cursor() as c: await c.execute( - "SELECT checksum(*) FROM GENERATE_SERIES(1, 200000000000)", # approx 6m runtime + "SELECT checksum(*) FROM GENERATE_SERIES(1, 400000000000)", # approx 6m runtime ) data = await c.fetchall() assert len(data) == 1, "Invalid data size returned by fetchall" diff --git a/tests/integration/dbapi/sync/V2/test_queries.py b/tests/integration/dbapi/sync/V2/test_queries.py index cf7e47a1c3..0c0d6e547d 100644 --- a/tests/integration/dbapi/sync/V2/test_queries.py +++ b/tests/integration/dbapi/sync/V2/test_queries.py @@ -138,7 +138,7 @@ def test_long_query( with connection.cursor() as c: c.execute( - "SELECT checksum(*) FROM GENERATE_SERIES(1, 200000000000)", # approx 6m runtime + "SELECT checksum(*) FROM GENERATE_SERIES(1, 400000000000)", # approx 6m runtime ) data = c.fetchall() assert len(data) == 1, "Invalid data size returned by fetchall"