"Gnanakumar" <[email protected]> wrote:
 
> how do I find out or REINDEX *only* GiST indexes in the
> database?  Is there a single syntax/command that does this?
 
I would probably capture the output from:
 
SELECT indexdef || ';'
  FROM pg_indexes
  WHERE indexdef ~ ' USING gist ';
 
-Kevin

-- 
Sent via pgsql-admin mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin

Reply via email to