blob: 4ff7c3197cd220c4d2f213651f7daf59c6e8d7b4 [file] [log] [blame]
-- Test resgroup oid larger than int32.
select gp_inject_fault('bump_oid', 'skip', dbid) from gp_segment_configuration where role = 'p' and content = -1;
create resource group rg_large_oid with (cpu_max_percent=20);
select gp_inject_fault('bump_oid', 'reset', dbid) from gp_segment_configuration where role = 'p' and content = -1;
select max(oid)::bigint > (power(2,31) + 1)::bigint from pg_resgroup;
-- count(*) > 0 to run the SQL but do not display the result
select count(*) > 0 from pg_resgroup_get_status(NULL);
drop resource group rg_large_oid;