10.4. Listing global sequences

Global sequences may be listed with:

   SELECT *
   FROM pg_class
   INNER JOIN pg_seqam ON (pg_class.relam = pg_seqam.oid)
   WHERE pg_seqam.seqamname = 'bdr' AND relkind = 'S';
   

Support for the sequence access method (seqam) field in psql is pending in PostgreSQL 9.5.