schemainspect
schemainspect copied to clipboard
Column options not supported
Column options:
ALTER TABLE test ALTER COLUMN test SET STATISTICS 0;
ALTER TABLE test ALTER COLUMN test SET (n_distinct=-1);
Makes no difference with migra.
Custom column options can be found in pg_catalog.pg_attribute.attoptions
, statistics setting in pg_catalog.pg_attribute.attstattarget
.
#85 is to solve it.