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

tech.ydb.jooq.dsl.function.aggregate.PopulationStdDev 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 tech.ydb.jooq.YdbTypes;

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

public final class PopulationStdDev extends AbstractYdbAggregateFunction {

    private static final Name POPULATION_STDDEV = systemName("population_stddev");

    public PopulationStdDev(Field field, boolean distinct) {
        super(
                distinct,
                POPULATION_STDDEV,
                YdbTypes.DOUBLE,
                field
        );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy