io.trino.plugin.redshift.ImplementRedshiftAvgDecimal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-redshift Show documentation
Show all versions of trino-redshift Show documentation
Trino - Redshift connector
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.plugin.redshift;
import io.trino.matching.Capture;
import io.trino.matching.Captures;
import io.trino.matching.Pattern;
import io.trino.plugin.base.aggregation.AggregateFunctionRule;
import io.trino.plugin.jdbc.JdbcColumnHandle;
import io.trino.plugin.jdbc.JdbcExpression;
import io.trino.plugin.jdbc.expression.ParameterizedExpression;
import io.trino.spi.connector.AggregateFunction;
import io.trino.spi.expression.Variable;
import io.trino.spi.type.DecimalType;
import java.util.Optional;
import static com.google.common.base.Verify.verify;
import static io.trino.matching.Capture.newCapture;
import static io.trino.plugin.base.aggregation.AggregateFunctionPatterns.basicAggregation;
import static io.trino.plugin.base.aggregation.AggregateFunctionPatterns.functionName;
import static io.trino.plugin.base.aggregation.AggregateFunctionPatterns.singleArgument;
import static io.trino.plugin.base.expression.ConnectorExpressionPatterns.type;
import static io.trino.plugin.base.expression.ConnectorExpressionPatterns.variable;
import static io.trino.plugin.redshift.RedshiftClient.REDSHIFT_MAX_DECIMAL_PRECISION;
import static java.lang.String.format;
public class ImplementRedshiftAvgDecimal
implements AggregateFunctionRule
{
private static final Capture INPUT = newCapture();
@Override
public Pattern getPattern()
{
return basicAggregation()
.with(functionName().equalTo("avg"))
.with(singleArgument().matching(
variable()
.with(type().matching(DecimalType.class::isInstance))
.capturedAs(INPUT)));
}
@Override
public Optional rewrite(AggregateFunction aggregateFunction, Captures captures, RewriteContext context)
{
Variable input = captures.get(INPUT);
JdbcColumnHandle columnHandle = (JdbcColumnHandle) context.getAssignment(input.getName());
DecimalType type = (DecimalType) columnHandle.getColumnType();
verify(aggregateFunction.getOutputType().equals(type));
ParameterizedExpression rewrittenArgument = context.rewriteExpression(input).orElseThrow();
// When decimal type has maximum precision we can get result that is not matching Trino avg semantics.
if (type.getPrecision() == REDSHIFT_MAX_DECIMAL_PRECISION) {
return Optional.of(new JdbcExpression(
format("avg(CAST(%s AS decimal(%s, %s)))", rewrittenArgument.expression(), type.getPrecision(), type.getScale()),
rewrittenArgument.parameters(),
columnHandle.getJdbcTypeHandle()));
}
// Redshift avg function rounds down resulting decimal.
// To match Trino avg semantics, we extend scale by 1 and round result to target scale.
return Optional.of(new JdbcExpression(
format("round(avg(CAST(%s AS decimal(%s, %s))), %s)", rewrittenArgument.expression(), type.getPrecision() + 1, type.getScale() + 1, type.getScale()),
rewrittenArgument.parameters(),
columnHandle.getJdbcTypeHandle()));
}
}