Skip to content

Tables should include a collection of Indexes for management and scripting purposes #13

Open
@nvarscar

Description

Review the following to implement:
https://www.postgresql.org/docs/current/sql-createindex.html
https://www.postgresql.org/docs/current/sql-alterindex.html

Some of the features it should be implementing:

cluster.tables['foo'].reindex(concurrently=True)
idxs: IndexCollection = cluster.tables['foo'].indexes
idx: Index = idxs['pk_foobar']
idx.reindex(concurrently=True)
idx.drop()
idx.fillfactor
idx.null_order
idx.null_distinct
idx.collation
idx.tablespace
idx.filter: Composable

Metadata

Assignees

No one assigned

    Labels

    SQLInvolves knowledge of Postgres/SQLenhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions