Skip to content

Commit

Permalink
fix(naming): add missing arg names in functions_logarithmic.yaml and …
Browse files Browse the repository at this point in the history
…functions_set.yaml (#319)
  • Loading branch information
vibhatha authored Sep 8, 2022
1 parent b7347d1 commit 1c14d27
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
18 changes: 12 additions & 6 deletions extensions/functions_logarithmic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ scalar_functions:
- name: on_domain_error
options: [ NAN, ERROR ]
required: false
- value: fp32
- name: x
value: fp32
return: fp32
- args:
- name: rounding
Expand All @@ -21,7 +22,8 @@ scalar_functions:
- name: on_domain_error
options: [ NAN, ERROR ]
required: false
- value: fp64
- name: x
value: fp64
return: fp64
-
name: "log10"
Expand All @@ -34,7 +36,8 @@ scalar_functions:
- name: on_domain_error
options: [ NAN, ERROR ]
required: false
- value: fp32
- name: x
value: fp32
return: fp32
- args:
- name: rounding
Expand All @@ -43,7 +46,8 @@ scalar_functions:
- name: on_domain_error
options: [ NAN, ERROR ]
required: false
- value: fp64
- name: x
value: fp64
return: fp64
-
name: "log2"
Expand All @@ -56,7 +60,8 @@ scalar_functions:
- name: on_domain_error
options: [ NAN, ERROR ]
required: false
- value: fp32
- name: x
value: fp32
return: fp32
- args:
- name: rounding
Expand All @@ -65,7 +70,8 @@ scalar_functions:
- name: on_domain_error
options: [ NAN, ERROR ]
required: false
- value: fp64
- name: x
value: fp64
return: fp64
-
name: "logb"
Expand Down
6 changes: 4 additions & 2 deletions extensions/functions_set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ scalar_functions:
- args:
- options: [ NAN_IS_NAN, NAN_IS_NOT_NAN ]
required: false
- value: T
- value: List<T>
- name: x
value: T
- name: y
value: List<T>
nullability: DECLARED_OUTPUT
return: int64?

0 comments on commit 1c14d27

Please sign in to comment.