47.60. pg_matviews
pg_matviews
视图提供了访问关于每个物化视图在数据库中的有用信息的接口。
Table 47-61. pg_matviews
字段
名字 | 类型 | 引用 | 描述 |
---|---|---|---|
schemaname |
name |
pg_namespace .nspname |
包含物化视图的模式名 |
matviewname |
name |
pg_class .relname |
物化视图的名字 |
matviewowner |
name |
pg_authid .rolname |
物化视图的所有者的名字 |
tablespace |
name |
pg_tablespace .spcname |
包含物化视图的名字空间的名字(如果对于数据库是缺省的则为null) |
hasindexes |
boolean |
如果物化视图有(或最近有)任何索引则为真 | |
ispopulated |
boolean |
如果物化视图当前填充了则为真 | |
definition |
text |
物化视图定义(一个重新构造的SELECT 查询) |