You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which is problematic because records with field_a between 2023-02-26 23:59:59.000000 and 2023-02-26 23:59:59.999999 will not be included in the query result. (Yes, the excluded range starts from 2023-02-26 23:59:59.000000, not 2023-02-26 23:59:59.000001.)
by_star version 3.0.0 handled sub-second precision datetime fields correctly. The same method call as above would generate the following query:
I'm on
by_star
version4.0.1
.Suppose I have a datetime field with microsecond precision:
The following method call
will generate a query like this (suppose I'm at
UTC+00:00
timezone):which is problematic because records with
field_a
between2023-02-26 23:59:59.000000
and2023-02-26 23:59:59.999999
will not be included in the query result. (Yes, the excluded range starts from2023-02-26 23:59:59.000000
, not2023-02-26 23:59:59.000001
.)by_star
version3.0.0
handled sub-second precision datetime fields correctly. The same method call as above would generate the following query:The text was updated successfully, but these errors were encountered: