Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration/dbapi/async/V2/test_queries_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/dbapi/sync/V2/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down