Skip to content

Commit

Permalink
fix(naming): add missing arg names in functions_aggregate_*.yaml (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha authored Sep 14, 2022
1 parent 521b63d commit fb92997
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion extensions/functions_aggregate_approx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ aggregate_functions:
result.
impls:
- args:
- value: any
- name: x
value: any
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: binary
Expand Down
9 changes: 6 additions & 3 deletions extensions/functions_aggregate_generic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ aggregate_functions:
description: Count a set of values
impls:
- args:
- options: [SILENT, SATURATE, ERROR]
- name: overflow
options: [SILENT, SATURATE, ERROR]
required: false
- value: any
- name: x
value: any
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: i64
Expand All @@ -16,7 +18,8 @@ aggregate_functions:
description: "Count a set of records (not field referenced)"
impls:
- args:
- options: [SILENT, SATURATE, ERROR]
- name: overflow
options: [SILENT, SATURATE, ERROR]
required: false
nullability: DECLARED_OUTPUT
decomposable: MANY
Expand Down

0 comments on commit fb92997

Please sign in to comment.