Re: Find out whether a view's column is indexed? - Mailing list pgsql-sql

From Martin Schäfer
Subject Re: Find out whether a view's column is indexed?
Date
Msg-id 37936EEC582B394A9E1AA951991A551604C3C0@dev001_pdc.Dev.cadcorp.net
Whole thread Raw
In response to Find out whether a view's column is indexed?  (Martin Schäfer <Martin.Schaefer@cadcorp.com>)
Responses Re: Find out whether a view's column is indexed?
List pgsql-sql
I think the information_schema.view_column_usage doesn't tell me which view column is based on which table column, it
onlysays generally which set of table/view columns are used for the view as a whole. 

I need a bit more detailed information. If I have two views defined as this:

CREATE VIEW v1 AS SELECT a,b,c FROM t;
CREATE VIEW v2 AS SELECT b AS a,a AS b,c FROM t;

then their entries in view_column_usage is identical, but it is entirely possible that e.g. v1.a is indexed, but v2.a
isnot indexed. 

I can do

EXPLAIN SELECT * FROM v2 WHERE a = 'foo';

and I can see whether a sequential scan or an index scan is performed, but parsing the output of EXPLAIN
programmaticallyis nearly impossible. Anyway the words 'Index Scan' and 'Seq Scan' can change without notice, maybe
evenfrom one locale to another. 

Martin

> -----Original Message-----
> From: Richard Huxton [mailto:dev@archonet.com]
>
> Martin Schäfer wrote:
> > Is there any way to find out whether a column that's used
> in a view is indexed?
> >
> > The following query:
> >
> > SELECT ic.relname AS index_name
> [snip]
> > lets me find out whether a table column is indexed, but it
> doesn't work for views. Is there anything that can be done
> for views? At least for simple views of the kind 'CREATE VIEW
> v AS SELECT a,b,c FROM t'?
>
> If you're running 7.4 you can look in the information schema, in
> view_column_usage - that will tell you which table-columns a
> view uses.
>
>
> --
>    Richard Huxton
>    Archonet Ltd
>


pgsql-sql by date:

Previous
From: Chris Gamache
Date:
Subject: Re: Schema + User-Defined Data Type Indexing problems...
Next
From: Stephen Quinney
Date:
Subject: Converting integer to binary