Currently the FeatureWriter for Postgis throws an error under the following situation:
- table with an id-column (as serial) has been created.
- if the table-name will be changed in Postgres, the column-definition of the id-column changes from
"<id> Serial Not NULL"
to
"<id> integer NOT NULL DEFAULT nextval('<old_table_name>_<id>_seq'::regclass),
- while Postgres is able to handle this reference to the old sequence, FME can't and crashes with the errror, that it can't write NULL into a serial id column.
