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