"Gnanakumar" <[email protected]> writes: > My question is, how do I find out or REINDEX *only* GiST indexes in the > database? Is there a single syntax/command that does this?
You could do something like
select relname from pg_class where relam = (select oid from pg_am where amname
= 'gist');
regards, tom lane
--
Sent via pgsql-admin mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin
