Skip to content

Commit 2014b48

Browse files
author
Rafał Hibner
committed
Merge branch 'SortedMergeNotFatal' into combined3
2 parents 5919bb2 + d1fea1d commit 2014b48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/src/arrow/acero/sorted_merge_node.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ class SortedMergeNode : public ExecNode {
606606
out_b.index = batches_produced++;
607607
Status st = output_->InputReceived(this, std::move(out_b));
608608
if (!st.ok()) {
609-
ARROW_LOG(FATAL) << "Error in output_::InputReceived: " << st.ToString();
609+
ARROW_LOG(ERROR) << "Error in output_::InputReceived: " << st.ToString();
610610
EndFromProcessThread(std::move(st));
611611
}
612612
} else {

0 commit comments

Comments
 (0)