Skip to content

Commit 6ad00e5

Browse files
committed
reduce number of generated rows in test_select_with_large_resultset
1 parent 06f2582 commit 6ad00e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/integ/test_arrow_result.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,8 @@ def test_select_with_empty_resultset(conn_cnx):
11711171

11721172
def test_select_with_large_resultset(conn_cnx):
11731173
col_count = 5
1174-
row_count = 1000000
1174+
# whummer: changed the rowcount from 1M to 100k below
1175+
row_count = 100000
11751176
random_seed = get_random_seed()
11761177

11771178
sql_text = (

0 commit comments

Comments
 (0)