I have table which is already designed to partition based on month range.
I am writing code in java to check all existing partitions and would create a new one when it doesnt exist.
If I create a new range partition for the upcoming month, will postgres automatically push data from main table onto the new range once new range data is attempted to be saved in DB ?
I tried inserting data into the main table to make postgres save data into range partition but I suppose its not required.