Skip to content

Commit

Permalink
Merge pull request #4402 from soerenwolfers/patch-74
Browse files Browse the repository at this point in the history
Update overview.md
  • Loading branch information
szarnyasg authored Dec 17, 2024
2 parents 33dcd85 + a4caf46 commit 887b289
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/sql/functions/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ SELECT goose_name.replace('goose', 'duck') AS duck_name
FROM unnest(['African goose', 'Faroese goose', 'Hungarian goose', 'Pomeranian goose']) breed(goose_name);
```

> Tip To apply function chaining to a single value, use parentheses, e.g.:
> Tip To apply function chaining to literals, you must use parentheses, e.g.:
>
> ```sql
> SELECT ('hello world').replace(' ', '_');
> ```
> Function chaining via the dot operator is limited to *scalar* functions; it is not available for *table* functions. For example, `SELECT * FROM ('/myfile.parquet').read_parquet()` is not supported.
## Query Functions
The `duckdb_functions()` table function shows the list of functions currently built into the system.
Expand Down

0 comments on commit 887b289

Please sign in to comment.