| From: | Teodor Sigaev <teodor(at)sigaev(dot)ru> |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | pgsql: Tsvector editing functions |
| Date: | 2016-03-11 16:28:09 |
| Message-ID: | [email protected] |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Tsvector editing functions
Adds several tsvector editting function: convert tsvector to/from text array,
set weight for given lexemes, delete lexeme(s), unnest, filter lexemes
with given weights
Author: Stas Kelvich with some editorization by me
Reviewers: Tomas Vondram, Teodor Sigaev
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/6943a946c7e5eb72d53c0ce71f08a81a133503bd
Modified Files
--------------
doc/src/sgml/func.sgml | 91 +++++-
doc/src/sgml/textsearch.sgml | 4 +
src/backend/utils/adt/tsvector_op.c | 563 ++++++++++++++++++++++++++++++++++
src/include/catalog/pg_proc.h | 18 +-
src/include/tsearch/ts_type.h | 7 +
src/test/regress/expected/tstypes.out | 221 ++++++++++++-
src/test/regress/sql/tstypes.sql | 47 ++-
7 files changed, 933 insertions(+), 18 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Teodor Sigaev | 2016-03-11 16:31:31 | pgsql: Bump catalog version missed in 6943a946c7e5eb72d53c0ce71f08a81a1 |
| Previous Message | Tom Lane | 2016-03-11 15:25:12 | pgsql: Minor additional refactoring of planner.c's PathTarget handling. |