]> begriffs open source - ai-pg/blob - full-docs/txt/view-pg-matviews.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / view-pg-matviews.txt
1
2 53.14. pg_matviews #
3
4    The view pg_matviews provides access to useful information about each
5    materialized view in the database.
6
7    Table 53.14. pg_matviews Columns
8
9    Column Type
10
11    Description
12
13    schemaname name (references pg_namespace.nspname)
14
15    Name of schema containing materialized view
16
17    matviewname name (references pg_class.relname)
18
19    Name of materialized view
20
21    matviewowner name (references pg_authid.rolname)
22
23    Name of materialized view's owner
24
25    tablespace name (references pg_tablespace.spcname)
26
27    Name of tablespace containing materialized view (null if default for
28    database)
29
30    hasindexes bool
31
32    True if materialized view has (or recently had) any indexes
33
34    ispopulated bool
35
36    True if materialized view is currently populated
37
38    definition text
39
40    Materialized view definition (a reconstructed SELECT query)