Update docs/en/sql-reference/functions/string-functions.md

Co-authored-by: Alexey Boykov <33257111+mathalex@users.noreply.github.com>
This commit is contained in:
Roman Bug 2021-08-12 19:09:51 +03:00 committed by GitHub
parent 72b7737391
commit 18ae8aac30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ leftPadUTF8('string','length'[, 'pad_string'])
**Arguments**
- `string` — Input string, that needs to be padded. [String](../data-types/string.md).
- `string` — Input string that needs to be padded. [String](../data-types/string.md).
- `length` — The length of the resulting string. [UInt](../data-types/int-uint.md). If the value is less than the input string length, then the input string is returned as-is.
- `pad_string` — The string to pad the input string with. [String](../data-types/string.md). Optional. If not specified, then the input string is padded with spaces.