Skip to content

Commit

Permalink
print filename
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Jun 10, 2024
1 parent 43aa5b7 commit bf952d1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions crash-repro/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,12 @@ int main(int argc, char* argv[]) {
return 1;
}
std::string filename{argv[1]};
std::cout << filename << std::endl;
std::cout << "Filename is " << filename << std::endl;


auto maybe_table = make_table();
if (!maybe_table.ok()) { return 1; }
auto table = maybe_table.ValueOrDie();
std::cout << table->ToString() << std::endl;
// auto maybe_table = make_table();
// if (!maybe_table.ok()) { return 1; }
// auto table = maybe_table.ValueOrDie();
// std::cout << table->ToString() << std::endl;
return 0;

// auto write_status = write_feather_file(table, filename);
Expand Down

0 comments on commit bf952d1

Please sign in to comment.