Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Remove specific randint call
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Nov 19, 2017
1 parent 8808e4c commit 1eee6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parquet/arrow/arrow-reader-writer-test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,7 @@ void MakeListTable(int num_rows, std::shared_ptr<Table>* out) {
offset_values.push_back(total_elements);

std::vector<int8_t> value_draws;
randint<int8_t>(total_elements, 0, 100, &value_draws);
randint(total_elements, 0, 100, &value_draws);

std::vector<bool> is_valid;
random_is_valid(total_elements, 0.1, &is_valid);
Expand Down

0 comments on commit 1eee6a9

Please sign in to comment.