Skip to content

Commit

Permalink
fix document
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordworms committed Feb 28, 2024
1 parent 9aef278 commit a12a4cd
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion docs/source/user-guide/sql/scalar_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2906,7 +2906,28 @@ empty(array)

### `generate_series`

_Alias of [range](#range)._
similar as range function, but include the upper bound

```
generate_series(start, stop, step)
```

#### Arguments

- **start**: start of the range
- **end**: end of the range (not included)
- **step**: increase by step (can not be 0)

#### Example

```
❯ select generate_series(1,3);
+------------------------------------+
| generate_series(Int64(1),Int64(3)) |
+------------------------------------+
| [1, 2, 3] |
+------------------------------------+
```

### `list_append`

Expand Down

0 comments on commit a12a4cd

Please sign in to comment.