com.hazelcast.sql.impl.expression.math.MultiplyFunction Maven / Gradle / Ivy
/*
* Copyright 2024 Hazelcast Inc.
*
* Licensed under the Hazelcast Community License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://hazelcast.com/hazelcast-community-license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.sql.impl.expression.math;
import com.hazelcast.jet.sql.impl.JetSqlSerializerHook;
import com.hazelcast.sql.impl.QueryException;
import com.hazelcast.sql.impl.SqlErrorCode;
import com.hazelcast.sql.impl.expression.BiExpressionWithType;
import com.hazelcast.sql.impl.expression.Expression;
import com.hazelcast.sql.impl.expression.ExpressionEvalContext;
import com.hazelcast.sql.impl.row.Row;
import com.hazelcast.sql.impl.type.QueryDataType;
import com.hazelcast.sql.impl.type.QueryDataTypeFamily;
import java.math.BigDecimal;
import static com.hazelcast.sql.impl.type.QueryDataTypeUtils.DECIMAL_MATH_CONTEXT;
/**
* Implements evaluation of SQL multiply operator.
*/
public final class MultiplyFunction extends BiExpressionWithType {
public MultiplyFunction() {
// No-op.
}
private MultiplyFunction(Expression> operand1, Expression> operand2, QueryDataType resultType) {
super(operand1, operand2, resultType);
}
public static MultiplyFunction> create(Expression> operand1, Expression> operand2, QueryDataType resultType) {
return new MultiplyFunction<>(operand1, operand2, resultType);
}
@Override
public int getClassId() {
return JetSqlSerializerHook.EXPRESSION_MULTIPLY;
}
@SuppressWarnings("unchecked")
@Override
public T eval(Row row, ExpressionEvalContext context) {
Object left = operand1.eval(row, context);
if (left == null) {
return null;
}
Object right = operand2.eval(row, context);
if (right == null) {
return null;
}
QueryDataTypeFamily family = resultType.getTypeFamily();
if (family.isTemporal()) {
throw new UnsupportedOperationException("temporal types are unsupported currently");
}
return (T) evalNumeric((Number) left, (Number) right, family);
}
private static Object evalNumeric(Number left, Number right, QueryDataTypeFamily family) {
switch (family) {
case TINYINT:
return (byte) (left.byteValue() * right.byteValue());
case SMALLINT:
return (short) (left.shortValue() * right.shortValue());
case INTEGER:
return left.intValue() * right.intValue();
case BIGINT:
try {
return Math.multiplyExact(left.longValue(), right.longValue());
} catch (ArithmeticException e) {
throw QueryException.error(SqlErrorCode.DATA_EXCEPTION,
"BIGINT overflow in '*' operator (consider adding explicit CAST to DECIMAL)");
}
case REAL:
return left.floatValue() * right.floatValue();
case DOUBLE:
return left.doubleValue() * right.doubleValue();
case DECIMAL:
return ((BigDecimal) left).multiply((BigDecimal) right, DECIMAL_MATH_CONTEXT);
default:
throw new IllegalArgumentException("unexpected result family: " + family);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy