-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(naming): add missing arg names in functions_aggregate_*.yaml #316
fix(naming): add missing arg names in functions_aggregate_*.yaml #316
Conversation
@jvanstraten not quite sure about the args in function - name: "count"
description: "Count a set of records (not field referenced)"
impls:
- args:
- options: [SILENT, SATURATE, ERROR]
required: false
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: i64
return: i64 |
The sole argument there would just be named |
So we could have the following for the unnamed count function? - name: "count"
description: "Count a set of records (not field referenced)"
impls:
- args:
- name: overflow
- options: [SILENT, SATURATE, ERROR]
required: false
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: i64
return: i64 |
Uh, more or less, but without the |
38ee05d
to
e1cf360
Compare
@jvanstraten updated the PR. |
e1cf360
to
ab50025
Compare
@jvanstraten updated the PR. |
This PR adds the missing argument names in
functions_aggregate_approx.yaml
andfunctions_aggregate_generic.yaml
.