Problem with pg_index. - Mailing list pgsql-sql

From David BOURIAUD
Subject Problem with pg_index.
Date
Msg-id 3B179E1F.4F9D8A4B@ac-rouen.fr
Whole thread Raw
Responses Re: Problem with pg_index.
List pgsql-sql
Hi the list !
I'm new to this list.
I've tried to write a sql query to get all the fields of a table and to
have mentionned is a field can be null or not, and if a field is a key
or not.
Before showing the query I send, let me tell you that I'm running
postgre v7.1.2 on a SuSE Linux 6.4 box, and that everything works fine
but this query.
Here it is :

select pg_class.oid, pg_attribute.attname, pg_attribute.attbyval, pg_attribute.attnotnull 
from pg_class, pg_attribute, pg_index 
where relname='essai2'and pg_attribute.attrelid=pg_class.oid and pg_attribute.attnum >0 and
pg_index.indrelid=pg_class.oidand pg_index.indkey[0] = pg_attribute.attnum 
 

This query doesn't work, the back-end answers Error : Invalid Command
name "0"...
What now ? I've checked out the online doc, and the archives of this
list (that's where I got pg_index.indkey[0] from), but nothing seems to
work, since pg_index.indkey seems to be an int2vector, and I found no
integrated function to check if a value is in this vector... Thanks for
your ideas and//or help.
-- 
David BOURIAUD
----------------------------------------------------------
In a world without walls or fences, what use do we have 
for windows or gates ?
----------------------------------------------------------
ICQ#102562021


pgsql-sql by date:

Previous
From: Gerald Gutierrez
Date:
Subject: RE: primary key scans in sequence
Next
From: Tom Lane
Date:
Subject: Re: Problem with pg_index.