nateeo
DTDrizzle Team
•Created by terryball on 3/14/2024 in #help
Type error working with Postgres dates in v.0.30.1
@terryball I had a similar problem to you upgrading to 0.30.x and couldn't get queries with dates inside
gte
working — for me I ended up replacing the gte/lte
calls with between
which doesn't seem to have the same issue. For example:
between(posts.created_at, startDate, endDate),
but that doesn't seem ideal if you don't want to pass in an endDate
(could just set it to now though).
I plan to look deeper to see what the actual issue is later9 replies