Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liulx20 committed Jan 24, 2025
1 parent da91497 commit 85b4447
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flex/engines/graph_db/app/cypher_app_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ bool generate_plan(
} else {
int status;
waitpid(pid, &status, 0);
if (WIFEXITED(status)) {}
if (WIFEXITED(status)) {
std::cout << "Child exited with status " << WEXITSTATUS(status)
<< std::endl;
}

{
std::ifstream file(output_file, std::ios::binary);
Expand Down

0 comments on commit 85b4447

Please sign in to comment.