Skip to content

Commit

Permalink
docs: document range() alias generate_series() (#9321)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC committed Feb 23, 2024
1 parent fad6061 commit 3b355c7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/source/user-guide/sql/scalar_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -1935,6 +1935,7 @@ from_unixtime(expression)
- [array_to_string](#array_to_string)
- [cardinality](#cardinality)
- [empty](#empty)
- [generate_series](#generate_series)
- [list_append](#list_append)
- [list_sort](#list_sort)
- [list_cat](#list_cat)
Expand Down Expand Up @@ -2881,6 +2882,10 @@ empty(array)
+------------------+
```

### `generate_series`

_Alias of [range](#range)._

### `list_append`

_Alias of [array_append](#array_append)._
Expand Down Expand Up @@ -3090,6 +3095,10 @@ Step can not be 0 (then the range will be nonsense.).
- **end**: end of the range (not included)
- **step**: increase by step (can not be 0)

#### Aliases

- generate_series

## Struct Functions

- [struct](#struct)
Expand Down

0 comments on commit 3b355c7

Please sign in to comment.