Non-PK automatic UUID (generated on INSERT by Postgres) is failing a JPA Repository.save() for the matching Entity – Postgresql
I have a pre-existing Postgres table designed to automatically generate a DEFAULT value for a UUID typed column THAT IS NOT THE PRIMARY KEY. Here's the DDL: CREATE SEQUENCE IF NOT EXISTS uuid_column_table_seq; CREATE TABLE IF NOT EXISTS uuid_column_table (…