i'm trying to run a very simple query that uses the now() function, i don't get a useful error message, all what i get is "unknown error". here is the query
select transaction_date
from trans
where transaction_date <= now()
the transaction_date is already a date field, i tried to do some casting but it didn't work too
select transaction_date
from trans
where date(transaction_date) <= date(now())
the datasource is a redshift cluster