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 85b4447 commit 90e86de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions flex/engines/graph_db/app/cypher_app_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
*/

#include "flex/engines/graph_db/app/cypher_app_utils.h"
#include <glog/logging.h>

#include <sys/wait.h> // for waitpid()
#include <unistd.h> // for fork() and execvp()
Expand Down Expand Up @@ -135,8 +136,8 @@ bool generate_plan(
int status;
waitpid(pid, &status, 0);
if (WIFEXITED(status)) {
std::cout << "Child exited with status " << WEXITSTATUS(status)
<< std::endl;
VLOG(1) << "Child exited with status " << WEXITSTATUS(status)
<< std::endl;
}

{
Expand Down

0 comments on commit 90e86de

Please sign in to comment.