Skip to content

Commit

Permalink
add template arg
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Jun 11, 2024
1 parent 81e3527 commit e9c1609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crash-repro/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ arrow::Result<std::shared_ptr<arrow::Table>> make_table() {

std::cout << "2" << std::endl;

ARROW_ASSIGN_OR_RAISE(auto int32Array, make_numeric_array()); //int32Values));
ARROW_ASSIGN_OR_RAISE(auto int32Array, make_numeric_array<int32_t>()); //int32Values));
std::cout << "3" << std::endl;

std::vector<std::shared_ptr<arrow::Array>> columns = {doubleArray, int32Array};
Expand Down

0 comments on commit e9c1609

Please sign in to comment.