I am getting the following error when I execute a the following query from a REST Web Service to a view in Denodo:
SELECT_NAVIGATIONAL <fields> FROM <denodo derived view> WHERE (1=1 and (Rcvd_Date BETWEEN DATE '0001-01-01' AND DATE '9999-12-31' ) WITH CONDITION MAPPINGS EVALUATION CONTEXT ('i18n'='rfc_restful')
Error received:
Received exception with message 'Error in select view conditions: Invalid parameter types of function 'to_date('yyyy-MM-dd', '0001-01-01', 'rfc_restful', '0')''
If I use CONTEXT ('i18n'='us_est), I am getting the same error as well: Received exception with message 'Error in select view conditions: Invalid parameter types of function 'to_date('yyyy-MM-dd', '0001-01-01', 'us_est', '0')''
The "base" table I am sourcing the data from is a Denodo Virtual Database on a separate server (2Q). I created a data source on the (1Q) server which points to the Virtual Database on the 2Q server via the Denodo JDBC driver.
What setting do I need to set on the servers so that I do not have this issue in the future.