Skip to content

functions_aggregate_generic.yaml

This document file is generated for functions_aggregate_generic.yaml

Aggregate Functions

count

Implementations:
count(x, option:overflow): -> return_type
0. count(any, option:overflow): -> i64

Count a set of values

Options:
  • overflow ['SILENT', 'SATURATE', 'ERROR']
  • count

    Implementations:

    Count a set of records (not field referenced)

    any_value

    Implementations:
    any_value(x): -> return_type
    0. any_value(any): -> any?

    *Selects an arbitrary value from a group of values. If the input is empty, the function returns null. *