File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 33## Version NEXT
44* Released: TBD*
55
6+ ### New Features
7+
8+ * Display materialized views as collections
9+
610### Bug Fixes
711
812* Handle specialty column types by casting to text (#52 )
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ LEFT JOIN pg_index i ON (c.oid = i.indrelid AND i.indisprimary
4949AND i.indnatts = 1)
5050LEFT JOIN pg_attribute ia ON (ia.attrelid = i.indexrelid)
5151LEFT JOIN pg_type it ON (ia.atttypid = it.oid AND it.typname in ('int2', 'int4', 'int8'))
52- WHERE c.relkind IN ('r', 'v') -- add 'v' for views
52+ WHERE c.relkind IN ('r', 'v', 'm' ) -- add 'v' for views
5353AND t.typname = 'geometry'
5454AND has_table_privilege(c.oid, 'select')
5555AND postgis_typmod_srid(a.atttypmod) > 0
You can’t perform that action at this time.
0 commit comments