Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiayi771 committed Dec 1, 2023
1 parent a8d43c2 commit 5db90d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ exec::AggregateRegistrationResult registerCentralMoments(
inputType,
"Input type for final aggregation must be "
"(count:bigint, m1:double, m2:double, m3:double, m4:double) struct");
return std::make_unique<
CentralMomentsAggregatesBase<int64_t /*unused*/, TResultAccessor>>(
resultType);
return std::make_unique<CentralMomentsAggregatesBase<
int64_t /*unused*/,
TResultAccessor>>(resultType);
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ exec::AggregateRegistrationResult registerCentralMoments(
inputType,
"Input type for final aggregation must be "
"(count:bigint, m1:double, m2:double, m3:double, m4:double) struct");
return std::make_unique<
CentralMomentsAggregatesBase<int64_t /*unused*/, TResultAccessor>>(
resultType);
return std::make_unique<CentralMomentsAggregatesBase<
int64_t /*unused*/,
TResultAccessor>>(resultType);
}
},
true);
Expand Down

0 comments on commit 5db90d6

Please sign in to comment.