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

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
This commit is contained in:
Roman Bug 2021-08-09 16:19:49 +03:00 committed by GitHub
parent 0efd744c88
commit aede1f4994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ leftPad('string', 'length'[, 'pad_string'])
- `string` — Input string, that need 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 current input string with. [String](../data-types/string.md).
- `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.
[String](../data-types/string.md)