]> begriffs open source - ai-pg/blob - full-docs/txt/sql-altertsparser.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / sql-altertsparser.txt
1
2 ALTER TEXT SEARCH PARSER
3
4    ALTER TEXT SEARCH PARSER — change the definition of a text search
5    parser
6
7 Synopsis
8
9 ALTER TEXT SEARCH PARSER name RENAME TO new_name
10 ALTER TEXT SEARCH PARSER name SET SCHEMA new_schema
11
12 Description
13
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
20 Parameters
21
22    name
23           The name (optionally schema-qualified) of an existing text
24           search parser.
25
26    new_name
27           The new name of the text search parser.
28
29    new_schema
30           The new schema for the text search parser.
31
32 Compatibility
33
34    There is no ALTER TEXT SEARCH PARSER statement in the SQL standard.
35
36 See Also
37
38    CREATE TEXT SEARCH PARSER, DROP TEXT SEARCH PARSER