I am using Exasol DB and to perform date operation, I am using SQL INTERVAL keyword with precision.
For example this query:
SELECT email_staging.ID, email_staging.CREATED_AT from EMAIL email_staging
WHERE email_staging.CREATED_AT > (CURRENT_DATE - (INTERVAL '5' DAY(3) ) ) )
Exasol requires the precision to sent i.e. suffix like '(3)' after DAY or else it won't allow querying for more that 99 days. But H2 Database doesn't support INTERVAL with precision.
Has anyone solved this as my integration tests which use H2 DB can't run.