You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Partitioned Postgres tables help to scale Postgres / can drastically improve performance on large data sets.
Proposed Solutions
For a full blown partition support there are some more expressions that need to be supported but I think the support for creating tables with PARTITION BY RANGE is already a good starting point. Hence this issue is just about that.
CREATETABLEmeasurement (
city_id intnot null,
logdate datenot null,
) PARTITION BY RANGE (logdate);
I'd love to see SeaQuery support creating partitioned Postgres tables.
Motivation
Partitioned Postgres tables help to scale Postgres / can drastically improve performance on large data sets.
Proposed Solutions
For a full blown partition support there are some more expressions that need to be supported but I think the support for creating tables with
PARTITION BY RANGE
is already a good starting point. Hence this issue is just about that.Additional Information
This issue blocks SeaQL/sea-orm#1962
The text was updated successfully, but these errors were encountered: