!242 【bug fix】when query pg_indexes, global partition index should be included

Merge pull request !242 from xiong_xjun/master_0905
This commit is contained in:
opengauss-bot
2020-09-23 15:12:59 +08:00
committed by Gitee

View File

@ -192,7 +192,7 @@ CREATE VIEW pg_indexes AS
JOIN pg_class I ON (I.oid = X.indexrelid)
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
LEFT JOIN pg_tablespace T ON (T.oid = I.reltablespace)
WHERE C.relkind IN ('r', 'm') AND I.relkind = 'i';
WHERE C.relkind IN ('r', 'm') AND I.relkind IN ('i', 'I');
-- For global temporary table
CREATE VIEW pg_gtt_relstats WITH (security_barrier) AS