Actually I am new to PostgreSQL. I want to alter existing partition to increase range value. For example I have below partition
PQR_271 FOR VALUES FROM ('260000000') TO ('270000000')
Here I want to extend the range to max value but I am not able to do the same.
I tried below solution
CREATE TABLE public.PQR_272 PARTITION OF public.stats_to_institution FOR VALUES FROM ('270000000') TO ('280000000');
ALTER TABLE public.PQR_272 OWNER to usr_replica;
Here I can increase the integer value but I cannot increase to maxvalue. Is there any solution to set range to maxvalue?
PostgreSQL version11