[typo](docs) add additional explanation to the repeat function (#32158)
This commit is contained in:
@ -33,6 +33,13 @@ under the License.
|
||||
|
||||
Repeat the str of the string count times, return empty string when count is less than 1, return NULL when str, count is any NULL
|
||||
|
||||
:::tip
|
||||
It can be repeated up to 10000 times by default, you can adjust session variable to change it
|
||||
```
|
||||
set repeat_max_num = 20000
|
||||
```
|
||||
:::
|
||||
|
||||
### example
|
||||
|
||||
```
|
||||
|
||||
@ -33,6 +33,13 @@ under the License.
|
||||
|
||||
将字符串 str 重复 count 次输出,count 小于1时返回空串,str,count 任一为NULL时,返回 NULL
|
||||
|
||||
:::tip
|
||||
repeat 函数默认最多重复 10000 次,可通过会话变量调整限制。
|
||||
```
|
||||
set repeat_max_num = 20000
|
||||
```
|
||||
:::
|
||||
|
||||
### example
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user