12.10. psql支援

Information about text search configuration objects can be obtained inpsqlusing a set of commands:

\dF{d,p,t}[
+
] [
PATTERN
]

An optional+produces more details.

The optional parameterPATTERN_can be the name of a text search object, optionally schema-qualified. IfPATTERNis omitted then information about all visible objects will be displayed.PATTERN_can be a regular expression and can provide_separate_patterns for the schema and object names. The following examples illustrate this:

=
>
 \dF *fulltext*
       List of text search configurations
 Schema |  Name        | Description
--------+--------------+-------------
 public | fulltext_cfg |
=
>
 \dF *.fulltext*
       List of text search configurations
 Schema   |  Name        | Description
----------+----------------------------
 fulltext | fulltext_cfg |
 public   | fulltext_cfg |

The available commands are:

\dF[

+

] [

PATTERN

]

List text search configurations (add+for more detail).

\dFd[

+

] [

PATTERN

]

List text search dictionaries (add+for more detail).

\dFp[

+

] [

PATTERN

]

List text search parsers (add+for more detail).

\dFt[

+

] [

PATTERN

]

List text search templates (add+for more detail).

Last updated