diff --git a/docs/generated/sql/functions.md b/docs/generated/sql/functions.md index 12f3f5a85bc7..97a71432d98e 100644 --- a/docs/generated/sql/functions.md +++ b/docs/generated/sql/functions.md @@ -883,6 +883,23 @@ available replica will error.
Function → Returns | Description | Volatility |
---|---|---|
phraseto_tsquery(config: string, text: string) → tsquery | Converts text to a tsquery, normalizing words according to the specified or default configuration. The <-> operator is inserted between each token in the input. + | Immutable |
plainto_tsquery(config: string, text: string) → tsquery | Converts text to a tsquery, normalizing words according to the specified or default configuration. The & operator is inserted between each token in the input. + | Immutable |
to_tsquery(config: string, text: string) → tsquery | Converts the input text into a tsquery by normalizing each word in the input according to the specified or default configuration. The input must already be formatted like a tsquery, in other words, subsequent tokens must be connected by a tsquery operator (&, |, <->, !). + | Immutable |
to_tsvector(config: string, text: string) → tsvector | Converts text to a tsvector, normalizing words according to the specified or default configuration. Position information is included in the result. + | Immutable |
ts_parse(parser_name: string, document: string) → tuple{int AS tokid, string AS token} | ts_parse parses the given document and returns a series of records, one for each token produced by parsing. Each record includes a tokid showing the assigned token type and a token which is the text of the token. + | Stable |