Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I did take a look at the mapping_Postgres.xml and did not see any reference to UUID, how could I adjust this file to alleviate my problem?
<mapping>
<dbms product="POSTGRESQL" id="postgres_id" label="Mapping Postgres"
default="true">
<dbTypes>
<dbType type="ABSTIME" ignoreLen="true" ignorePre="true" />
<dbType type="ACLITEM" ignoreLen="true" ignorePre="true" />
.
.
.
<dbType type="_VARCHAR" ignoreLen="true" ignorePre="true" />
<dbType type="_XID" ignoreLen="true" ignorePre="true" />
<dbType type="_UUID" ignoreLen="true" ignorePre="true" /> //add this line
</dbTypes>
<language name="java">
<talendToDbTypes><!-- Adviced mappings -->
<talendType type="id_List"/>
<talendType type="id_Boolean">
.
.
.<talendType type="id_Object">
<dbType type="_POINT" />
<dbType type="_POLYGON" />
.
.
.
<dbType type="_PATH" />
<dbType type="POINT" /> // delete default="true"
<dbType type="UUID" default="true" /> //add this line
</talendType>