All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.jooq.dsl.function.aggregate.Max Maven / Gradle / Ivy

The newest version!
package tech.ydb.jooq.dsl.function.aggregate;

import org.jooq.Field;
import org.jooq.Name;
import org.jooq.impl.AbstractYdbAggregateFunction;

import static org.jooq.impl.DSL.systemName;

public final class Max extends AbstractYdbAggregateFunction {

    private static final Name MAX = systemName("Max");

    public Max(Field field, boolean distinct) {
        super(
                distinct,
                MAX,
                field.getDataType(),
                field
        );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy