Tables should include a collection of Indexes for management and scripting purposes #13
Open
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