Changes between Version 1 and Version 2 of Ticket #34798


Ignore:
Timestamp:
Aug 25, 2023, 1:25:08 AM (9 months ago)
Author:
Mariusz Felisiak
Comment:

Thanks for the report, however I cannot reproduce it using any builtin backend. You should try to report it to the issue tracker of the 3rd-party database backend that you're using.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34798

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #34798 – Description

    v1 v2  
    1515class Invoice(models.Model):
    1616  date = models.DateField()
    17   gross = models.FloatFlied()
     17  gross = models.FloatField()
    1818
    1919exchange = Subquery(Exchange.objects.filter(date__lte=OuterRef('date')).order_by('-date').values('value')[:1])
Back to Top