I have created a custom data type enum like so:
create type \"bnfunctionstype\" as enum (
\'normal\',
\'library\',
\'import\',
\'thunk\',
If you have an enum like this:
CREATE TYPE payment_status AS ENUM ('preview', 'pending', 'paid',
'reviewing', 'confirmed', 'cancelled');
You can create a list of valid items like this:
SELECT i, (enum_range(NULL::payment_status))[i]
FROM generate_series(1, array_length(enum_range(NULL::payment_status), 1)) i
Which gives:
i | enum_range
---+------------
1 | preview
2 | pending
3 | paid
4 | reviewing
5 | confirmed
6 | cancelled
(6 rows)