Fix spelling

This commit is contained in:
Robert Schulze 2023-09-20 21:15:52 +00:00
parent f3bf8388b6
commit 28ca5cad7d
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -7,19 +7,19 @@ Contains information about normal and aggregate functions.
Columns:
- `name` ([String](../../sql-reference/datatypes/string.md)) The name of the function.
- `is_aggregate` ([UInt8](../../sql-reference/datatypes/int-uint.md)) — Whether the function is an aggregate function.
- `name` ([String](../../sql-reference/data-types/string.md)) The name of the function.
- `is_aggregate` ([UInt8](../../sql-reference/data-types/int-uint.md)) — Whether the function is an aggregate function.
- `is_deterministic` ([Nullable](../../sql-reference/data-types/nullable.md)([UInt8](../../sql-reference/data-types/int-uint.md))) - Whether the function is deterministic.
- `case_insensitive`, ([UInt8](../../sql-reference/datatypes/int-uint.md)) - Whether the function name can be used case-insensitively.
- `alias_to`, ([String](../../sql-reference/datatypes/string.md)) - The original function name, if the function name is an alias.
- `create_query`, ([String](../../sql-reference/datatypes/enum.md)) - Unused.
- `origin`, ([Enum8](../../sql-reference/datatypes/string.md)) - Unused.
- `description`, ([String](../../sql-reference/datatypes/string.md)) - A high-level description what the function does.
- `syntax`, ([String](../../sql-reference/datatypes/string.md)) - Signature of the function.
- `arguments`, ([String](../../sql-reference/datatypes/string.md)) - What arguments does the function take.
- `returned_value`, ([String](../../sql-reference/datatypes/string.md)) - What does the function return.
- `examples`, ([String](../../sql-reference/datatypes/string.md)) - Example usage of the function.
- `categories`, ([String](../../sql-reference/datatypes/string.md)) - The category of the function.
- `case_insensitive`, ([UInt8](../../sql-reference/data-types/int-uint.md)) - Whether the function name can be used case-insensitively.
- `alias_to`, ([String](../../sql-reference/data-types/string.md)) - The original function name, if the function name is an alias.
- `create_query`, ([String](../../sql-reference/data-types/enum.md)) - Unused.
- `origin`, ([Enum8](../../sql-reference/data-types/string.md)) - Unused.
- `description`, ([String](../../sql-reference/data-types/string.md)) - A high-level description what the function does.
- `syntax`, ([String](../../sql-reference/data-types/string.md)) - Signature of the function.
- `arguments`, ([String](../../sql-reference/data-types/string.md)) - What arguments does the function take.
- `returned_value`, ([String](../../sql-reference/data-types/string.md)) - What does the function return.
- `examples`, ([String](../../sql-reference/data-types/string.md)) - Example usage of the function.
- `categories`, ([String](../../sql-reference/data-types/string.md)) - The category of the function.
**Example**