Merge pull request #38799 from railwayc/patch-2

Update function.md
This commit is contained in:
Kruglov Pavel 2022-07-04 20:52:16 +02:00 committed by GitHub
commit 2f1eca27e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ Creates a user defined function from a lambda expression. The expression must co
**Syntax**
```sql
CREATE FUNCTION name AS (parameter0, ...) -> expression
CREATE FUNCTION name [ON CLUSTER cluster] AS (parameter0, ...) -> expression
```
A function can have an arbitrary number of parameters.