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
For larger databases it would be a nice improvement to be able to manage partitioned tables and partitions using the postgresql_table module.
Managing in this context includes (but is not limited to):
Creating partitioned tables
Attach & detach partitions
ISSUE TYPE
Feature Idea
COMPONENT NAME
postgresql_table
ADDITIONAL INFORMATION
This feature would be used while creating tables (see below for two ideas).
The ability to create and manage partitioned tables is important to work with big tables.
- name: Create test_table with several columns and partitioned by date rangecommunity.postgresql.postgresql_table:
name: test_tablecolumns:
- id bigserial primary key
- num bigint
- date datepartition: range (date)
- name: Create test_table_2022 with several columns and attach it to test_tablecommunity.postgresql.postgresql_table:
name: test_tablecolumns:
- id bigserial primary key
- num bigint
- date datepartition: of test_table for values from ('2022-01-01') to ('2023-01-01')
The text was updated successfully, but these errors were encountered:
SUMMARY
For larger databases it would be a nice improvement to be able to manage partitioned tables and partitions using the postgresql_table module.
Managing in this context includes (but is not limited to):
ISSUE TYPE
COMPONENT NAME
postgresql_table
ADDITIONAL INFORMATION
The text was updated successfully, but these errors were encountered: