Remove trailing semicolon in REPEAT function example (#116218)

Remove trailing semicolon in REPEAT function example (Closes #116156 )
This commit is contained in:
Jack Pan 2024-11-11 18:10:05 +08:00 committed by GitHub
parent ddd606d360
commit 0914679225
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -42,7 +42,7 @@
}
],
"examples" : [
"ROW a = \"Hello!\"\n| EVAL triple_a = REPEAT(a, 3);"
"ROW a = \"Hello!\"\n| EVAL triple_a = REPEAT(a, 3)"
],
"preview" : false,
"snapshot_only" : false

View File

@ -7,5 +7,5 @@ Returns a string constructed by concatenating `string` with itself the specified
```
ROW a = "Hello!"
| EVAL triple_a = REPEAT(a, 3);
| EVAL triple_a = REPEAT(a, 3)
```

View File

@ -1655,8 +1655,9 @@ repeat
required_capability: repeat
// tag::repeat[]
ROW a = "Hello!"
| EVAL triple_a = REPEAT(a, 3);
| EVAL triple_a = REPEAT(a, 3)
// end::repeat[]
;
// tag::repeat-result[]
a:keyword | triple_a:keyword