Skip to content

Commit

Permalink
fix: update extension yaml files to match type-syntax spec (#423)
Browse files Browse the repository at this point in the history
Co-authored-by: chaojun-zhang <[email protected]>
  • Loading branch information
chaojun-zhang and chaojun-zhang authored Jan 21, 2023
1 parent d35f0ed commit 0608878
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions extensions/functions_arithmetic_decimal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ aggregate_functions:
values: [ SILENT, SATURATE, ERROR ]
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: "DECIMAL<38,S>?"
return: "DECIMAL<38,S>?"
intermediate: "DECIMAL?<38,S>"
return: "DECIMAL?<38,S>"
- name: "avg"
description: Average a set of values.
impls:
Expand All @@ -137,8 +137,8 @@ aggregate_functions:
value: "DECIMAL<P, S>"
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: "DECIMAL<P, S>?"
return: "DECIMAL<P, S>?"
intermediate: "DECIMAL?<P, S>"
return: "DECIMAL?<P, S>"
- name: "max"
description: Max a set of values.
impls:
Expand All @@ -147,5 +147,5 @@ aggregate_functions:
value: "DECIMAL<P,S>"
nullability: DECLARED_OUTPUT
decomposable: MANY
intermediate: "DECIMAL<P, S>?"
return: "DECIMAL<P, S>?"
intermediate: "DECIMAL?<P, S>"
return: "DECIMAL?<P, S>"

0 comments on commit 0608878

Please sign in to comment.