FME Desktop v2021.1.1.0
postgresql v11.13
We have an expiration date col that we default to a hard coded high value on INSERT using a trigger and function. The value of that timestamptz col is:
9999-12-31 23:59:59.000 -0600
SQLCreator or SQLExecuter will not allow the selection or reference of that column. However, I can select or reference the col in DBeaver without issues.
This statement produces this error in FME:
select exp_ts from test_table;
POSTGIS reader: An error occurred. FME will attempt to obtain more information on the error, but this may cause the translation to be terminated
POSTGIS reader: An error occurred. Here is the information that FME was able to find on the error
POSTGIS reader: stk::ex::bad_expected_access
Workaround was to change the col to timestamp.
Any ideas?