Skip to content

Commit

Permalink
Fixed format
Browse files Browse the repository at this point in the history
  • Loading branch information
mroz45 committed Oct 30, 2024
1 parent a6a9495 commit e858e4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/arrow/acero/asof_join_node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1136,9 +1136,9 @@ class AsofJoinNode : public ExecNode {
virtual ~AsofJoinNode() {
#ifdef ARROW_ENABLE_THREADING
PushProcess(false);
if(process_thread_.joinable()){
process_thread_.join();
}
if (process_thread_.joinable()) {
process_thread_.join();
}
#endif
}

Expand Down

0 comments on commit e858e4f

Please sign in to comment.