Skip to content

Commit

Permalink
[Integration] Fix huge integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Nov 16, 2023
1 parent 3e0ca5b commit 059a5f9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions dev/archery/archery/integration/datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1520,8 +1520,7 @@ def generate_decimal128_case():
for i, precision in enumerate(range(3, 39))
]

possible_batch_sizes = 7, 10
batch_sizes = [possible_batch_sizes[i % 2] for i in range(len(fields))]
batch_sizes = [7, 10]
# 'decimal' is the original name for the test, and it must match
# provide "gold" files that test backwards compatibility, so they
# can be appropriately skipped.
Expand All @@ -1535,8 +1534,7 @@ def generate_decimal256_case():
for i, precision in enumerate(range(37, 70))
]

possible_batch_sizes = 7, 10
batch_sizes = [possible_batch_sizes[i % 2] for i in range(len(fields))]
batch_sizes = [7, 10]
return _generate_file('decimal256', fields, batch_sizes)


Expand Down

0 comments on commit 059a5f9

Please sign in to comment.