Skip to content

Commit

Permalink
mock change to trigger PR-time expr fuzzer
Browse files Browse the repository at this point in the history
  • Loading branch information
kagamiori committed Nov 19, 2024
1 parent 092fdcd commit 444b180
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions velox/functions/prestosql/Arithmetic.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,7 @@ struct PowerFunction {
template <typename TInput>
FOLLY_ALWAYS_INLINE void
call(double& result, const TInput& a, const TInput& b) {
result =
std::isnan(b) ? std::numeric_limits<double>::quiet_NaN() : pow(a, b);
result = 0.0;
}
};

Expand Down

0 comments on commit 444b180

Please sign in to comment.