The following views report the error:
# select * from gp_toolkit.gp_resgroup_status; ERROR: value "2200086979" is out of range for type integer gpadmin=# select * from gp_toolkit.gp_resgroup_status_per_segment;; ERROR: value "2200086979" is out of range for type integer # select * from gp_toolkit.gp_resgroup_status_per_host; ERROR: value "2200086979" is out of range for type integer
# select oid,* from pg_resgroup; oid | rsgname | parent ------------+---------------+-------- 6437 | default_group | 0 6438 | admin_group | 0 2200086979 | rq_test | 0 (3 rows)The cause of the error is due to a coding issue with the function pg_catalog.pg_resgroup_get_status which is used by the above views.
# select pg_catalog.pg_resgroup_get_status(NULL); ERROR: value "2200086979" is out of range for type integer