Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix another typo
  • Loading branch information
HyukjinKwon committed Nov 2, 2016
commit 6ad2068bae420ab8f61b20cb165038d841352436
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ case class MapValues(child: Expression)
*/
// scalastyle:off line.size.limit
@ExpressionDescription(
usage = "_FUNC_(array[, ascendingOrder]) - Sorts the input array in ascending / descending order according to the natural ordering of the array elements.",
usage = "_FUNC_(array[, ascendingOrder]) - Sorts the input array in ascending or descending order according to the natural ordering of the array elements.",
extended = """
Examples:
> SELECT _FUNC_(array('b', 'd', 'c', 'a'), true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ case class Coalesce(children: Seq[Expression]) extends Expression {
}
}


@ExpressionDescription(
usage = "_FUNC_(expr1, expr2) - Returns `expr2` if `expr1` is null, or `expr1` otherwise.",
extended = """
Expand Down