Add more arithmetic scalar functions #14671
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several new scalar functions to the
ArithmeticFunctions
class inpinot-common/src/main/java/org/apache/pinot/common/function/scalar/ArithmeticFunctions.java
. These functions aim to enhance the mathematical operations available in the codebase, providing more robust and versatile arithmetic capabilities.New scalar functions added:
intDiv
andintDivOrZero
: Perform integer division, withintDivOrZero
returning zero for division by zero or when dividing a minimal negative number by minus one.isFinite
,isInfinite
, andisNaN
: Check if a double value is finite, infinite, or NaN, respectively.ifNotFinite
: Returns a default value if the given value is not finite.moduloOrZero
andpositiveModulo
: Variants of the modulo operation, withmoduloOrZero
returning zero for division by zero or when dividing a minimal negative number by minus one.negate
: Returns the negation of a double value.gcd
andlcm
: Calculate the greatest common divisor and least common multiple of two long values, respectively.hypot
: Computes the hypotenuse of a right-angled triangle given the lengths of the other two sides.byteswapInt
andbyteswapLong
: Perform byte swapping on integer and long values.