Details
Reporter
Sudipto SarkarSudipto SarkarComponents
Affects versions
Priority
Major
Details
Details
Reporter
Sudipto Sarkar
Sudipto SarkarComponents
Affects versions
Priority
Created January 31, 2020 at 6:44 AM
Updated January 31, 2020 at 7:09 AM
Database: Postgres.
This is the changeSet I was having trouble with:
<changeSet author="sudipto" id="1580107122999-11" runOnChange="true"> <loadData commentLineStartsWith="#" encoding="UTF-8" file="data/xxx_mapping.csv" quotchar=""" relativeToChangelogFile="true" separator="," tableName="xxx_mapping"> <column header="xxxxxx_id" name="tenant_id" type="NUMERIC"/> <column header="xxxxx_id" name="vendor_psl_id" type="NUMERIC"/> <column header="xxxx_id" name="vendor_id" type="NUMERIC"/> <column header="xxx_score" name="financial_score" type="NUMERIC"/> <column header="xxx_status_id" name="vendor_psl_status_id" type="NUMERIC"/> <column header="xxx_type" name="user_type" type="STRING"/> <column header="calendar_date" name="calendar_date" type="DATE"/> <column header="audit_id" name="audit_id" type="NUMERIC"/> </loadData> </changeSet>
The column -
xxx_type
was failing during update because it's of an enum type.As part of this improvement, we'll add a type -
OTHER
(similar (exactly similar) tojava.sql.Types.OTHER
). This will not only handle enum types during data load for Postgres, but also many other kinds of datatypes that are supported byjava.sql.Types.OTHER
.