io.trino.operator.scalar.timestamp.DateAdd Maven / Gradle / Ivy
/*
* 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.operator.scalar.timestamp;
import io.airlift.slice.Slice;
import io.trino.operator.scalar.DateTimeFunctions;
import io.trino.spi.TrinoException;
import io.trino.spi.function.Description;
import io.trino.spi.function.LiteralParameter;
import io.trino.spi.function.LiteralParameters;
import io.trino.spi.function.ScalarFunction;
import io.trino.spi.function.SqlType;
import io.trino.spi.type.LongTimestamp;
import io.trino.spi.type.StandardTypes;
import org.joda.time.chrono.ISOChronology;
import static io.trino.spi.StandardErrorCode.INVALID_FUNCTION_ARGUMENT;
import static io.trino.type.DateTimes.getMicrosOfMilli;
import static io.trino.type.DateTimes.round;
import static io.trino.type.DateTimes.scaleEpochMicrosToMillis;
import static io.trino.type.DateTimes.scaleEpochMillisToMicros;
import static java.lang.Math.toIntExact;
@Description("Add the specified amount of time to the given timestamp")
@ScalarFunction("date_add")
public class DateAdd
{
private DateAdd() {}
@LiteralParameters({"x", "p"})
@SqlType("timestamp(p)")
public static long add(
@LiteralParameter("p") long precision,
@SqlType("varchar(x)") Slice unit,
@SqlType(StandardTypes.BIGINT) long value,
@SqlType("timestamp(p)") long timestamp)
{
try {
long epochMillis = scaleEpochMicrosToMillis(timestamp);
int microsOfMilli = getMicrosOfMilli(timestamp);
epochMillis = DateTimeFunctions.getTimestampField(ISOChronology.getInstanceUTC(), unit).add(epochMillis, toIntExact(value));
if (precision <= 3) {
epochMillis = round(epochMillis, (int) (3 - precision));
}
return scaleEpochMillisToMicros(epochMillis) + microsOfMilli;
}
catch (IllegalArgumentException | ArithmeticException e) {
throw new TrinoException(INVALID_FUNCTION_ARGUMENT, e.getMessage());
}
}
@LiteralParameters({"x", "p"})
@SqlType("timestamp(p)")
public static LongTimestamp add(
@SqlType("varchar(x)") Slice unit,
@SqlType(StandardTypes.BIGINT) long value,
@SqlType("timestamp(p)") LongTimestamp timestamp)
{
return new LongTimestamp(
add(6, unit, value, timestamp.getEpochMicros()),
timestamp.getPicosOfMicro());
}
}