[refactor] Refactoring Status static methods to format message using fmt(#9533)
This commit is contained in:
@ -257,7 +257,7 @@ Status AggregationNode::prepare(RuntimeState* state) {
|
||||
size_t alignment_of_next_state =
|
||||
_aggregate_evaluators[i + 1]->function()->align_of_data();
|
||||
if ((alignment_of_next_state & (alignment_of_next_state - 1)) != 0) {
|
||||
return Status::RuntimeError(fmt::format("Logical error: align_of_data is not 2^N"));
|
||||
return Status::RuntimeError("Logical error: align_of_data is not 2^N");
|
||||
}
|
||||
|
||||
/// Extend total_size to next alignment requirement
|
||||
|
||||
Reference in New Issue
Block a user