Postgres has some advanced text search types and features that Django uses that we we don't support --
https://www.postgresql.org/docs/10/functions-textsearch.html
https://www.postgresql.org/docs/10/datatype-textsearch.html
This includes the tsvector and regconfig types and operations on them.
And SQL operators for tsvector:
Jira issue: CRDB-5464
Epic: CRDB-22357
Postgres has some advanced text search types and features that Django uses that we we don't support --
https://www.postgresql.org/docs/10/functions-textsearch.html
https://www.postgresql.org/docs/10/datatype-textsearch.html
This includes the
tsvectorandregconfigtypes and operations on them.tsvectordatastructuretsquerydatastructureto_tsvectorto_tsqueryphraseto_tsqueryplainto_tsquerywebsearch_to_tsquerytsquery_phrase@@ts_rankts_rank_cdstrip(tsvector)setweight(tsvector)array_to_tsvector(text[])numnode(tsquery)querytree(tsquery)ts_delete(tsvector, text)ts_headlinets_rewritetsvector_to_array(tsvector)jsonb_to_tsvector/json_to_tsvector(sql: support jsonb_to_tsvector #109955)unnest(tsvector)And SQL operators for tsvector:
@@(matching a tsvector and tsquery)Jira issue: CRDB-5464
Epic: CRDB-22357