Skip to content

Commit

Permalink
fix: update descriptions for least functions
Browse files Browse the repository at this point in the history
Co-authored-by: Weston Pace <weston.pace@gmail.com>
  • Loading branch information
richtia and westonpace authored Oct 26, 2023
1 parent ab7bcbe commit bebf67f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions extensions/functions_comparison.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,8 @@ scalar_functions:
-
name: "least"
description: >-
Returns the smallest value. The function will return null if any argument evaluates
Evaluates each argument and returns the smallest one. The function will return null if any argument evaluates
to null.
String comparison is done in lexicographical ordering, one character at a time, from
left to right. Uppercase letters are less than lowercase letters.
impls:
- args:
- value: T
Expand All @@ -232,11 +229,8 @@ scalar_functions:
-
name: "least_skip_null"
description: >-
Returns the smallest value. The function will return null only if all arguments evaluate
Evaluates each argument and returns the smallest one. The function will return null only if all arguments evaluate
to null.
String comparison is done in lexicographical ordering, one character at a time, from
left to right. Uppercase letters are less than lowercase letters.
impls:
- args:
- value: T
Expand Down

0 comments on commit bebf67f

Please sign in to comment.