Changes between Version 2 and Version 3 of Ticket #35369


Ignore:
Timestamp:
Apr 12, 2024, 10:27:30 AM (5 weeks ago)
Author:
DS/Charlie
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35369 – Description

    v2 v3  
    99        b = BugModel.objects.all()
    1010
    11         ab = a.union(b)
     11        ab = a.union(b)   # does NOT happen with `a | b`
    1212        """
    1313            (
     
    2020        """
    2121
    22         ab.aggregate(max=Max("foo"))
     22        q = ab.aggregate(max=Max("foo"))
    2323        """
    2424        SELECT MAX(`__col1`)
     
    5050        MySQLdb.OperationalError: (1054, "Unknown column '__col1' in 'field list'")
    5151        """
     52
     53        self.assertIsNone(q['max'])
    5254}}}
    5355
Back to Top