1ALTER TEXT SEARCH PARSER(7P)ostgreSQL 15.4 DocumentatiAoLnTER TEXT SEARCH PARSER(7)
2
3
4
6 ALTER_TEXT_SEARCH_PARSER - change the definition of a text search
7 parser
8
10 ALTER TEXT SEARCH PARSER name RENAME TO new_name
11 ALTER TEXT SEARCH PARSER name SET SCHEMA new_schema
12
14 ALTER TEXT SEARCH PARSER changes the definition of a text search
15 parser. Currently, the only supported functionality is to change the
16 parser's name.
17
18 You must be a superuser to use ALTER TEXT SEARCH PARSER.
19
21 name
22 The name (optionally schema-qualified) of an existing text search
23 parser.
24
25 new_name
26 The new name of the text search parser.
27
28 new_schema
29 The new schema for the text search parser.
30
32 There is no ALTER TEXT SEARCH PARSER statement in the SQL standard.
33
35 CREATE TEXT SEARCH PARSER (CREATE_TEXT_SEARCH_PARSER(7)), DROP TEXT
36 SEARCH PARSER (DROP_TEXT_SEARCH_PARSER(7))
37
38
39
40PostgreSQL 15.4 2023 ALTER TEXT SEARCH PARSER(7)