Hi Pritesh,
> In ConvertMap_PostgreSQL.java TO_DATE is converted to TO_TIMESTAMP.
> Does anyone knows reason for this?
Because oracle to_date is equivalent to postgresql to_timestamp
You can rewrite your query (making it specific for postgresql) to avoid
the convert:
- not using to_date - for example you could use cast or ::date notation
- using NATIVE_PostgreSQL_KEYWORKTO_DATE instead of the TO_DATE
Regards,
Carlos Ruiz
> --