Hi, I want to filter a field of type Date (Java.sql.Date) like the
following:

filter("f_date <= '1998-10-02'")

and

filter("f_date <= '1998/10/02'")

Expression 'f_date <= 1998/10/02 failed on input check: Comparison is only
supported for numeric types and comparable types of same type, got Date and
String

I tried giving the date without a single quotation but it errors:
Expression 'f_date <= ((1998 / 10) / 2) failed on input check: Comparison
is only supported for numeric types and comparable types of same type, got
Date and Integer

Reply via email to