Changes between Version 2 and Version 3 of Ticket #31860


Ignore:
Timestamp:
Aug 5, 2020, 5:22:49 PM (4 years ago)
Author:
Aleksandr Smechov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31860 – Description

    v2 v3  
    1 When filtering a query for two equal datetime fields, and using {{{__date}}}, the {{{__date}}} in the F expression remains a timestamp.
     1When filtering a query for two equal datetime fields (both being timestamps), and using {{{__date}}}, the {{{__date}}} in the F expression remains a timestamp.
    22
    33For example:
     
    1111
    1212
    13 This will return an empty set, as F("articles__date_edited__date") remains a timestamp. I instead have to revert to using Func.
     13This will return an empty set, as {{{F("articles__date_edited__date")}}} remains a timestamp. I instead have to revert to using Func.
    1414
    1515{{{
Back to Top