Skip to content

Commit 2ad76c0

Browse files
committed
Update docs
1 parent 18dc430 commit 2ad76c0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/en/sql-reference/functions/splitting-merging-functions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,8 @@ Result:
353353

354354

355355
Splits a UTF-8 string into n-grams of `ngramsize` symbols.
356-
This function is deprecated. Prefer to use [tokens](#tokens) with the `ngram` tokenizer. The function will be removed at some point in future.
356+
This function is deprecated. Prefer to use [tokens](#tokens) with the `ngram` tokenizer.
357+
The function might be removed at some point in future.
357358

358359
**Syntax**
359360

@@ -392,7 +393,7 @@ The default tokenizer uses non-alphanumeric ASCII characters as separators.
392393
**Arguments**
393394

394395
- `value` — The input string. [String](../data-types/string.md) or [FixedString](../data-types/fixedstring.md).
395-
- `tokenizer` — The tokenizer to use. Valid arguments are `default`, `noop`, and `ngram`.
396+
- `tokenizer` — The tokenizer to use. Valid arguments are `default`, `ngram`, and `noop`. Optional, if not set explicitly, defaults to `default`. [const String](../data-types/string.md)
396397
- `ngrams` — Only relevant if argument `tokenizer` is `ngram`: An optional parameter which defines the length of the ngrams. If not set explicitly, defaults to `3`. [UInt8](../data-types/int-uint.md).
397398

398399
**Returned value**

0 commit comments

Comments
 (0)