core.0.42.0.source-code.functions_aggregate_generic.yaml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Create a well-defined, cross-language specification for data compute operations
%YAML 1.2
---
aggregate_functions:
- name: "count"
description: Count a set of values
impls:
- args:
- name: x
value: any
options:
overflow:
values: [SILENT, SATURATE, ERROR]
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: i64
return: i64
- name: "count"
description: "Count a set of records (not field referenced)"
impls:
- options:
overflow:
values: [SILENT, SATURATE, ERROR]
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: i64
return: i64
- name: "any_value"
description: >
Selects an arbitrary value from a group of values.
If the input is empty, the function returns null.
impls:
- args:
- name: x
value: any1
options:
ignore_nulls:
values: [ "TRUE", "FALSE" ]
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: any1?
return: any1?
© 2015 - 2024 Weber Informatics LLC | Privacy Policy