Merge branch 'alexey-sm-DOCSUP-13375-document-CREATE-DROP-FUNCTION' of https://github.com/lehasm/ClickHouse into alexey-sm-DOCSUP-13375-document-CREATE-DROP-FUNCTION

This commit is contained in:
Alexey 2021-09-01 18:37:42 +00:00
commit d9aee1bf7b

View File

@ -5,7 +5,7 @@ toc_title: FUNCTION
# CREATE FUNCTION {#create-function}
Creates a user defined function from a lambda expression. The expression must consist of function parameters, constants, operators or other function calls.
Creates a user defined function from a lambda expression. The expression must consist of function parameters, constants, operators, or other function calls.
**Syntax**
@ -14,7 +14,7 @@ CREATE FUNCTION name AS (parameter0, ...) -> expression
```
A function can have an arbitrary number of parameters.
There are a few restrictions.
There are a few restrictions:
- The name of a function must be unique among user defined and system functions.
- Recursive functions are not allowed.