CREATE SCHEMA text_search; CREATE SCHEMA text_search2; SET search_path TO text_search; -- create a new configuration from scratch CREATE TEXT SEARCH CONFIGURATION my_text_search_config ( parser = default ); CREATE TABLE t1(id int, name text); CREATE INDEX t1_search_name ON t1 USING gin (to_tsvector('text_search.my_text_search_config'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('t1', 'name'); DROP TABLE t1; DROP TEXT SEARCH CONFIGURATION my_text_search_config; -- try to create table and index in 1 transaction BEGIN; CREATE TEXT SEARCH CONFIGURATION my_text_search_config ( parser = default ); CREATE TABLE t1(id int, name text); CREATE INDEX t1_search_name ON t1 USING gin (to_tsvector('text_search.my_text_search_config'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('t1', 'name'); ABORT; -- try again, should not fail with my_text_search_config being retained on the worker BEGIN; CREATE TEXT SEARCH CONFIGURATION my_text_search_config ( parser = default ); COMMENT ON TEXT SEARCH CONFIGURATION my_text_search_config IS 'on demand propagation of text search object with a comment'; CREATE TABLE t1(id int, name text); CREATE INDEX t1_search_name ON t1 USING gin (to_tsvector('text_search.my_text_search_config'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('t1', 'name'); -- verify that we can change the object COMMENT ON TEXT SEARCH CONFIGURATION my_text_search_config IS 'this comment can be set right now'; COMMIT; SELECT * FROM run_command_on_workers($$ SELECT obj_description('text_search.my_text_search_config'::regconfig); $$) ORDER BY 1,2; DROP TABLE t1; -- create an index on an already distributed table BEGIN; CREATE TEXT SEARCH CONFIGURATION my_text_search_config2 ( parser = default ); COMMENT ON TEXT SEARCH CONFIGURATION my_text_search_config2 IS 'on demand propagation of text search object with a comment 2'; CREATE TABLE t1(id int, name text); SELECT create_distributed_table('t1', 'name'); CREATE INDEX t1_search_name ON t1 USING gin (to_tsvector('text_search.my_text_search_config2'::regconfig, (COALESCE(name, ''::character varying))::text)); COMMIT; SELECT * FROM run_command_on_workers($$ SELECT obj_description('text_search.my_text_search_config2'::regconfig); $$) ORDER BY 1,2; DROP TABLE t1; -- should be able to create a configuration based on a copy of an existing configuration CREATE TEXT SEARCH CONFIGURATION french_noaccent ( COPY = french ); CREATE TABLE t2(id int, name text); CREATE INDEX t2_search_name ON t2 USING gin (to_tsvector('text_search.french_noaccent'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('t2', 'id'); -- spot check that french_noaccent copied settings from french SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.french_noaccent', 'comment tu t''appelle') WHERE alias = 'asciiword' LIMIT 1; $$) ORDER BY 1,2; -- makes no sense, however we expect that the dictionary for the first token changes accordingly ALTER TEXT SEARCH CONFIGURATION french_noaccent ALTER MAPPING FOR asciiword WITH dutch_stem; SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.french_noaccent', 'comment tu t''appelle') WHERE alias = 'asciiword' LIMIT 1; $$) ORDER BY 1,2; -- do the same but we will replace all french dictionaries SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.french_noaccent', 'un chou-fleur') WHERE alias = 'asciihword' LIMIT 1; $$) ORDER BY 1,2; ALTER TEXT SEARCH CONFIGURATION french_noaccent ALTER MAPPING REPLACE french_stem WITH dutch_stem; SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.french_noaccent', 'un chou-fleur') WHERE alias = 'asciihword' LIMIT 1; $$) ORDER BY 1,2; -- once more but now back via yet a different DDL command ALTER TEXT SEARCH CONFIGURATION french_noaccent ALTER MAPPING FOR asciihword REPLACE dutch_stem WITH french_stem; SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.french_noaccent', 'un chou-fleur') WHERE alias = 'asciihword' LIMIT 1; $$) ORDER BY 1,2; -- drop a mapping ALTER TEXT SEARCH CONFIGURATION french_noaccent DROP MAPPING FOR asciihword; SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.french_noaccent', 'un chou-fleur') WHERE alias = 'asciihword' LIMIT 1; $$) ORDER BY 1,2; -- also with exists, doesn't change anything, but should not error ALTER TEXT SEARCH CONFIGURATION french_noaccent DROP MAPPING IF EXISTS FOR asciihword; -- Comment on a text search configuration COMMENT ON TEXT SEARCH CONFIGURATION french_noaccent IS 'a text configuration that is butchered to test all edge cases'; SELECT * FROM run_command_on_workers($$ SELECT obj_description('text_search.french_noaccent'::regconfig); $$) ORDER BY 1,2; -- Remove a comment COMMENT ON TEXT SEARCH CONFIGURATION french_noaccent IS NULL; SELECT * FROM run_command_on_workers($$ SELECT obj_description('text_search.french_noaccent'::regconfig); $$) ORDER BY 1,2; -- verify adding 2 dictionaries for two tokes at once ALTER TEXT SEARCH CONFIGURATION french_noaccent DROP MAPPING IF EXISTS FOR asciiword, asciihword; ALTER TEXT SEARCH CONFIGURATION french_noaccent ADD MAPPING FOR asciiword, asciihword WITH french_stem, dutch_stem; SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionaries) FROM ts_debug('text_search.french_noaccent', 'un chou-fleur') WHERE alias = 'asciiword' LIMIT 1; $$) ORDER BY 1,2; SELECT * FROM run_command_on_workers($$ SELECT ROW(alias,dictionaries) FROM ts_debug('text_search.french_noaccent', 'un chou-fleur') WHERE alias = 'asciihword' LIMIT 1; $$) ORDER BY 1,2; --verify we can drop cascade a configuration that is in use -- verify it is in use DROP TEXT SEARCH CONFIGURATION text_search.french_noaccent; -- drop cascade DROP TEXT SEARCH CONFIGURATION text_search.french_noaccent CASCADE; -- verify the configuration is dropped from the workers SELECT * FROM run_command_on_workers($$ SELECT 'text_search.french_noaccent'::regconfig; $$) ORDER BY 1,2; SET client_min_messages TO 'warning'; SELECT * FROM run_command_on_workers($$CREATE ROLE text_search_owner;$$) ORDER BY 1,2; CREATE ROLE text_search_owner; RESET client_min_messages; CREATE TEXT SEARCH CONFIGURATION changed_owner ( PARSER = default ); SELECT * FROM run_command_on_workers($$ SELECT cfgowner::regrole FROM pg_ts_config WHERE oid = 'text_search.changed_owner'::regconfig; $$) ORDER BY 1,2; ALTER TEXT SEARCH CONFIGURATION changed_owner OWNER TO text_search_owner; SELECT * FROM run_command_on_workers($$ SELECT cfgowner::regrole FROM pg_ts_config WHERE oid = 'text_search.changed_owner'::regconfig; $$) ORDER BY 1,2; -- redo test with propagating object after it was created and changed of owner SET citus.enable_ddl_propagation TO off; CREATE TEXT SEARCH CONFIGURATION changed_owner2 ( PARSER = default ); ALTER TEXT SEARCH CONFIGURATION changed_owner2 OWNER TO text_search_owner; RESET citus.enable_ddl_propagation; -- verify object doesn't exist before propagating SELECT * FROM run_command_on_workers($$ SELECT 'text_search.changed_owner2'::regconfig; $$) ORDER BY 1,2; -- distribute configuration CREATE TABLE t3(id int, name text); CREATE INDEX t3_search_name ON t3 USING gin (to_tsvector('text_search.changed_owner2'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('t3', 'name'); -- verify config owner SELECT * FROM run_command_on_workers($$ SELECT cfgowner::regrole FROM pg_ts_config WHERE oid = 'text_search.changed_owner2'::regconfig; $$) ORDER BY 1,2; -- rename tests CREATE TEXT SEARCH CONFIGURATION change_name ( PARSER = default ); SELECT * FROM run_command_on_workers($$ -- verify the name exists on the worker SELECT 'text_search.change_name'::regconfig; $$) ORDER BY 1,2; ALTER TEXT SEARCH CONFIGURATION change_name RENAME TO changed_name; SELECT * FROM run_command_on_workers($$ -- verify the name exists on the worker SELECT 'text_search.changed_name'::regconfig; $$) ORDER BY 1,2; -- test move of schema CREATE TEXT SEARCH CONFIGURATION change_schema ( PARSER = default ); SELECT * FROM run_command_on_workers($$ -- verify the name exists on the worker SELECT 'text_search.change_schema'::regconfig; $$) ORDER BY 1,2; ALTER TEXT SEARCH CONFIGURATION change_schema SET SCHEMA text_search2; SELECT * FROM run_command_on_workers($$ -- verify the name exists on the worker SELECT 'text_search2.change_schema'::regconfig; $$) ORDER BY 1,2; -- verify we get an error that the configuration change_schema is not found, even though the object address will be -- found in its new schema, and is distributed ALTER TEXT SEARCH CONFIGURATION change_schema SET SCHEMA text_search2; -- should tell us that text_search.does_not_exist does not exist, covers a complex edgecase -- in resolving the object address ALTER TEXT SEARCH CONFIGURATION text_search.does_not_exist SET SCHEMA text_search2; -- verify edgecases in deparsers CREATE TEXT SEARCH CONFIGURATION config1 ( PARSER = default ); CREATE TEXT SEARCH CONFIGURATION config2 ( PARSER = default ); SET citus.enable_ddl_propagation TO off; CREATE TEXT SEARCH CONFIGURATION config3 ( PARSER = default ); RESET citus.enable_ddl_propagation; -- verify config1, config2 exist on workers, config3 not SELECT * FROM run_command_on_workers($$ SELECT 'text_search.config1'::regconfig; $$) ORDER BY 1,2; SELECT * FROM run_command_on_workers($$ SELECT 'text_search.config2'::regconfig; $$) ORDER BY 1,2; SELECT * FROM run_command_on_workers($$ SELECT 'text_search.config3'::regconfig; $$) ORDER BY 1,2; -- DROP all config's, only 1&2 are distributed, they should propagate well to remotes DROP TEXT SEARCH CONFIGURATION config1, config2, config3; -- verify all existing ones have been removed (checking config3 for consistency) SELECT * FROM run_command_on_workers($$ SELECT 'text_search.config1'::regconfig; $$) ORDER BY 1,2; SELECT * FROM run_command_on_workers($$ SELECT 'text_search.config2'::regconfig; $$) ORDER BY 1,2; SELECT * FROM run_command_on_workers($$ SELECT 'text_search.config3'::regconfig; $$) ORDER BY 1,2; -- verify they are all removed locally SELECT 'text_search.config1'::regconfig; SELECT 'text_search.config2'::regconfig; SELECT 'text_search.config3'::regconfig; -- verify that indexes created concurrently that would propagate a TEXT SEARCH CONFIGURATION object SET citus.enable_ddl_propagation TO off; CREATE TEXT SEARCH CONFIGURATION concurrent_index_config ( PARSER = default ); RESET citus.enable_ddl_propagation; -- verify it doesn't exist on the workers SELECT * FROM run_command_on_workers($$ SELECT 'text_search.concurrent_index_config'::regconfig; $$) ORDER BY 1,2; -- create distributed table that then concurrently would have an index created. CREATE TABLE t4(id int, name text); SELECT create_distributed_table('t4', 'name'); CREATE INDEX CONCURRENTLY t4_search_name ON t4 USING gin (to_tsvector('text_search.concurrent_index_config'::regconfig, (COALESCE(name, ''::character varying))::text)); -- now the configuration should be on the worker, and the above index creation shouldn't have failed. SELECT * FROM run_command_on_workers($$ SELECT 'text_search.concurrent_index_config'::regconfig; $$) ORDER BY 1,2; -- verify the objid is correctly committed locally due to the somewhat convoluted commit and new transaction starting when creating an index concurrently SELECT pg_catalog.pg_identify_object_as_address(classid, objid, objsubid) FROM pg_catalog.pg_dist_object WHERE classid = 3602 AND objid = 'text_search.concurrent_index_config'::regconfig::oid; -- verify old text search configurations get renamed if they are not the same as the newly propagated configuration. -- We do this by creating configurations on the workers as a copy from a different existing catalog. SELECT * FROM run_command_on_workers($$ set citus.enable_metadata_sync TO off; CREATE TEXT SEARCH CONFIGURATION text_search.manually_created_wrongly ( copy = dutch ); reset citus.enable_metadata_sync; $$) ORDER BY 1,2; CREATE TEXT SEARCH CONFIGURATION text_search.manually_created_wrongly ( copy = french ); -- now we expect manually_created_wrongly(citus_backup_XXX) to show up when querying the configurations SELECT * FROM run_command_on_workers($$ SELECT array_agg(cfgname) FROM pg_ts_config WHERE cfgname LIKE 'manually_created_wrongly%'; $$) ORDER BY 1,2; -- verify the objects get reused appropriately when the specification is the same SELECT * FROM run_command_on_workers($$ set citus.enable_metadata_sync TO off; CREATE TEXT SEARCH CONFIGURATION text_search.manually_created_correct ( copy = french ); reset citus.enable_metadata_sync; $$) ORDER BY 1,2; CREATE TEXT SEARCH CONFIGURATION text_search.manually_created_correct ( copy = french ); -- now we don't expect manually_created_correct(citus_backup_XXX) to show up when querying the configurations as the -- original one is reused SELECT * FROM run_command_on_workers($$ SELECT array_agg(cfgname) FROM pg_ts_config WHERE cfgname LIKE 'manually_created_correct%'; $$) ORDER BY 1,2; CREATE SCHEMA "Text Search Requiring Quote's"; CREATE TEXT SEARCH CONFIGURATION "Text Search Requiring Quote's"."Quoted Config Name" ( parser = default ); CREATE TABLE t5(id int, name text); CREATE INDEX t5_search_name ON t5 USING gin (to_tsvector('"Text Search Requiring Quote''s"."Quoted Config Name"'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('t5', 'name'); -- make sure partial indices propagate their dependencies -- first have a TEXT SEARCH CONFIGURATION that is not distributed SET citus.enable_ddl_propagation TO off; CREATE TEXT SEARCH CONFIGURATION partial_index_test_config ( parser = default ); RESET citus.enable_ddl_propagation; CREATE TABLE sensors( measureid integer, eventdatetime date, measure_data jsonb, name text, PRIMARY KEY (measureid, eventdatetime, measure_data) ) PARTITION BY RANGE(eventdatetime); CREATE TABLE sensors_a_partition PARTITION OF sensors FOR VALUES FROM ('2000-01-01') TO ('2020-01-01'); CREATE INDEX sensors_search_name ON sensors USING gin (to_tsvector('partial_index_test_config'::regconfig, (COALESCE(name, ''::character varying))::text)); SELECT create_distributed_table('sensors', 'measureid'); -- create a new dictionary from scratch CREATE TEXT SEARCH DICTIONARY my_english_dict ( template = snowball, language = english, stopwords = english ); -- verify that the dictionary definition is the same in all nodes SELECT result FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'my_english_dict'; $$); -- use the new dictionary in a configuration mapping CREATE TEXT SEARCH CONFIGURATION my_english_config ( COPY = english ); ALTER TEXT SEARCH CONFIGURATION my_english_config ALTER MAPPING FOR asciiword WITH my_english_dict; -- verify that the dictionary is available on the worker nodes SELECT result FROM run_command_on_all_nodes($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.my_english_config', 'The Brightest supernovaes') WHERE alias = 'asciiword' LIMIT 1; $$); -- comment on a text search dictionary COMMENT ON TEXT SEARCH DICTIONARY my_english_dict IS 'a text search dictionary that is butchered to test all edge cases'; SELECT result FROM run_command_on_all_nodes($$ SELECT obj_description('text_search.my_english_dict'::regdictionary); $$); -- remove a comment COMMENT ON TEXT SEARCH DICTIONARY my_english_dict IS NULL; SELECT result FROM run_command_on_all_nodes($$ SELECT obj_description('text_search.my_english_dict'::regdictionary); $$); -- test various ALTER TEXT SEARCH DICTIONARY commands ALTER TEXT SEARCH DICTIONARY my_english_dict RENAME TO my_turkish_dict; ALTER TEXT SEARCH DICTIONARY my_turkish_dict (language = turkish, stopwords); ALTER TEXT SEARCH DICTIONARY my_turkish_dict OWNER TO text_search_owner; ALTER TEXT SEARCH DICTIONARY my_turkish_dict SET SCHEMA "Text Search Requiring Quote's"; -- verify that the dictionary definition is the same in all nodes SELECT result FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'my_turkish_dict'; $$); -- verify that the configuration dictionary is changed in all nodes SELECT result FROM run_command_on_all_nodes($$ SELECT ROW(alias,dictionary) FROM ts_debug('text_search.my_english_config', 'The Brightest supernovaes') WHERE alias = 'asciiword' LIMIT 1; $$); -- before testing drops, check that the dictionary exists on all nodes SELECT result FROM run_command_on_all_nodes($$ SELECT '"Text Search Requiring Quote''s".my_turkish_dict'::regdictionary; $$); ALTER TEXT SEARCH DICTIONARY "Text Search Requiring Quote's".my_turkish_dict SET SCHEMA text_search; -- verify that we can drop the dictionary only with cascade option DROP TEXT SEARCH DICTIONARY my_turkish_dict; DROP TEXT SEARCH DICTIONARY my_turkish_dict CASCADE; -- verify that it is dropped now SELECT result FROM run_command_on_all_nodes($$ SELECT 'my_turkish_dict'::regdictionary; $$); -- test different templates that are used in dictionaries CREATE TEXT SEARCH DICTIONARY simple_dict ( TEMPLATE = pg_catalog.simple, STOPWORDS = english, accept = false ); SELECT COUNT(DISTINCT result)=1 FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'simple_dict'; $$); CREATE TEXT SEARCH DICTIONARY synonym_dict ( template=synonym, synonyms='synonym_sample', casesensitive=1 ); SELECT COUNT(DISTINCT result)=1 FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'synonym_dict'; $$); CREATE TEXT SEARCH DICTIONARY thesaurus_dict ( TEMPLATE = thesaurus, DictFile = thesaurus_sample, Dictionary = pg_catalog.english_stem ); SELECT COUNT(DISTINCT result)=1 FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'thesaurus_dict'; $$); CREATE TEXT SEARCH DICTIONARY ispell_dict ( TEMPLATE = ispell, DictFile = ispell_sample, AffFile = ispell_sample, Stopwords = english ); SELECT COUNT(DISTINCT result)=1 FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'ispell_dict'; $$); CREATE TEXT SEARCH DICTIONARY snowball_dict ( TEMPLATE = snowball, Language = english, StopWords = english ); SELECT COUNT(DISTINCT result)=1 FROM run_command_on_all_nodes($$ SELECT ROW(dictname, dictnamespace::regnamespace, dictowner::regrole, tmplname, dictinitoption) FROM pg_ts_dict d JOIN pg_ts_template t ON ( d.dicttemplate = t.oid ) WHERE dictname = 'snowball_dict'; $$); -- will skip trying to propagate the text search configuration due to temp schema CREATE TEXT SEARCH CONFIGURATION pg_temp.temp_text_search_config ( parser = default ); -- will skip trying to propagate the text search dictionary due to temp schema CREATE TEXT SEARCH DICTIONARY pg_temp.temp_text_search_dict ( template = snowball, language = english, stopwords = english ); SET client_min_messages TO 'warning'; DROP SCHEMA text_search, text_search2, "Text Search Requiring Quote's" CASCADE; DROP ROLE text_search_owner;