我正在尝试从其目录表中加载 Postgres 属性。
我创建了一个 Postgres 表和几组索引(唯一索引、聚集索引)。通过下面的查询,我可以获得索引的名称、索引的类型以及它的注释。
SELECT c.relname as indexname, i.indisunique as isUniqueIndex, i.indisclustered as isClustered, pg_catalog.obj_description(c.oid, 'pg_class') as COMMENT
FROM pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
JOIN pg_catalog.pg_index i ON i.indexrelid = c.oid
JOIN pg_catalog.pg_class t ON i.indrelid = t.oid
WHERE c.relkind = 'i' and n.nspname = 'schema1' AND t.relname='table_with_index'
有没有办法检索fillfactor
索引的值?我正在使用 Postgresql 8.4,我看到了使用填充因子创建索引的语法,所以希望有一种方法可以从目录表中获取值。