Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions extensions/functions_arithmetic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,10 @@ aggregate_functions:
- name: "std_dev"
description: Calculates standard-deviation for a set of values.
impls:
- args:
- deprecated:
since: "0.88.0"
reason: Use implementation with distribution enum argument instead.
args:
- name: x
value: fp32
options:
Expand All @@ -1412,7 +1415,10 @@ aggregate_functions:
values: [ TIE_TO_EVEN, TIE_AWAY_FROM_ZERO, TRUNCATE, CEILING, FLOOR ]
nullability: DECLARED_OUTPUT
return: fp32?
- args:
- deprecated:
since: "0.88.0"
reason: Use implementation with distribution enum argument instead.
args:
- name: x
value: fp64
options:
Expand All @@ -1435,7 +1441,10 @@ aggregate_functions:
- name: "variance"
description: Calculates variance for a set of values.
impls:
- args:
- deprecated:
since: "0.88.0"
reason: Use implementation with distribution enum argument instead.
args:
- name: x
value: fp32
options:
Expand All @@ -1455,7 +1464,10 @@ aggregate_functions:
values: [ TIE_TO_EVEN, TIE_AWAY_FROM_ZERO, TRUNCATE, CEILING, FLOOR ]
nullability: DECLARED_OUTPUT
return: fp32?
- args:
- deprecated:
since: "0.88.0"
reason: Use implementation with distribution enum argument instead.
args:
- name: x
value: fp64
options:
Expand Down