├── .gitignore ├── .travis.yml ├── Dockerfile.tmpl ├── LICENSE ├── META.json ├── Makefile ├── README.md ├── data ├── rum.data └── tsearch.data ├── docker-compose.yml ├── expected ├── functions.out ├── index_data.out ├── json.out ├── json_1.out ├── json_flags.out ├── json_flags_1.out ├── json_flags_2.out ├── match.out ├── operators.out ├── rank.out ├── rank_1.out ├── rum.out ├── rum_1.out ├── rum_hash.out ├── rum_hash_1.out └── search.out ├── init.sql ├── input └── index_data.source ├── output └── index_data.source ├── rum_support.sql ├── run_tests.sh ├── sql ├── functions.sql ├── index_data.sql ├── json.sql ├── json_flags.sql ├── match.sql ├── operators.sql ├── rank.sql ├── rum.sql ├── rum_hash.sql └── search.sql ├── src ├── tsvector2.c ├── tsvector2.h ├── tsvector2_conv.c ├── tsvector2_gin.c ├── tsvector2_gist.c ├── tsvector2_op.c ├── tsvector2_rank.c ├── tsvector2_rum.c ├── tsvector2_sel.c └── tsvector2_utils.h └── tsvector2.control /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/Dockerfile.tmpl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/README.md -------------------------------------------------------------------------------- /data/rum.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/data/rum.data -------------------------------------------------------------------------------- /data/tsearch.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/data/tsearch.data -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | tests: 2 | build: . 3 | -------------------------------------------------------------------------------- /expected/functions.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/functions.out -------------------------------------------------------------------------------- /expected/index_data.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/index_data.out -------------------------------------------------------------------------------- /expected/json.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/json.out -------------------------------------------------------------------------------- /expected/json_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/json_1.out -------------------------------------------------------------------------------- /expected/json_flags.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/json_flags.out -------------------------------------------------------------------------------- /expected/json_flags_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/json_flags_1.out -------------------------------------------------------------------------------- /expected/json_flags_2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/json_flags_2.out -------------------------------------------------------------------------------- /expected/match.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/match.out -------------------------------------------------------------------------------- /expected/operators.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/operators.out -------------------------------------------------------------------------------- /expected/rank.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/rank.out -------------------------------------------------------------------------------- /expected/rank_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/rank_1.out -------------------------------------------------------------------------------- /expected/rum.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/rum.out -------------------------------------------------------------------------------- /expected/rum_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/rum_1.out -------------------------------------------------------------------------------- /expected/rum_hash.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/rum_hash.out -------------------------------------------------------------------------------- /expected/rum_hash_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/rum_hash_1.out -------------------------------------------------------------------------------- /expected/search.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/expected/search.out -------------------------------------------------------------------------------- /init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/init.sql -------------------------------------------------------------------------------- /input/index_data.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/input/index_data.source -------------------------------------------------------------------------------- /output/index_data.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/output/index_data.source -------------------------------------------------------------------------------- /rum_support.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/rum_support.sql -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/run_tests.sh -------------------------------------------------------------------------------- /sql/functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/functions.sql -------------------------------------------------------------------------------- /sql/index_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/index_data.sql -------------------------------------------------------------------------------- /sql/json.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/json.sql -------------------------------------------------------------------------------- /sql/json_flags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/json_flags.sql -------------------------------------------------------------------------------- /sql/match.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/match.sql -------------------------------------------------------------------------------- /sql/operators.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/operators.sql -------------------------------------------------------------------------------- /sql/rank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/rank.sql -------------------------------------------------------------------------------- /sql/rum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/rum.sql -------------------------------------------------------------------------------- /sql/rum_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/rum_hash.sql -------------------------------------------------------------------------------- /sql/search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/sql/search.sql -------------------------------------------------------------------------------- /src/tsvector2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2.c -------------------------------------------------------------------------------- /src/tsvector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2.h -------------------------------------------------------------------------------- /src/tsvector2_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_conv.c -------------------------------------------------------------------------------- /src/tsvector2_gin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_gin.c -------------------------------------------------------------------------------- /src/tsvector2_gist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_gist.c -------------------------------------------------------------------------------- /src/tsvector2_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_op.c -------------------------------------------------------------------------------- /src/tsvector2_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_rank.c -------------------------------------------------------------------------------- /src/tsvector2_rum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_rum.c -------------------------------------------------------------------------------- /src/tsvector2_sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_sel.c -------------------------------------------------------------------------------- /src/tsvector2_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/src/tsvector2_utils.h -------------------------------------------------------------------------------- /tsvector2.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/tsvector2/HEAD/tsvector2.control --------------------------------------------------------------------------------