Display materialized views

This commit is contained in:
Dan Sosedoff
2016-01-14 21:30:19 -06:00
parent 2721a90455
commit 3af20f9327
4 changed files with 38 additions and 32 deletions

View File

@@ -130,7 +130,7 @@ FROM
LEFT JOIN
pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE
c.relkind IN ('r','v','S','s','') AND
c.relkind IN ('r','v','m','S','s','') AND
n.nspname !~ '^pg_toast' AND
n.nspname NOT IN ('information_schema', 'pg_catalog')
ORDER BY 1, 2`