Hi.
When a sequence is owned by a group, the sequence can't be listed in phpPgAdmin (5.1, 5.6). When the sequence es searched and listed the view of the sequence fails.
Example:
CREATE GROUP grptest;
CREATE USER usrtest;
ALTER USER usrtest WITH PASSWORD 'test1234';
GRANT grptest TO usrtest;
CREATE DATABASE dbtest OWNER grptest;
\c dbtest
CREATE SEQUENCE seqtest START 101;
-- You can see the sequence in phpPgAdmin as usrtest
ALTER SEQUENCE seqtest OWNER TO grptest;
-- Now, You can't see the sequence in phpPgAdmin as usrtest
Best regards.
THis issue should be fixed in git master, and will be made available in the next release. For access to the patch, check out https://github.com/phppgadmin/phppgadmin/commit/fd9c78875b2683dea27989943345f91ce2f31450.