Changes between Version 1 and Version 3 of Ticket #32967
- Timestamp:
- Jul 27, 2021, 5:26:44 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32967
- Property Summary Buggy Migrations when `flota("nan")` in `Q` objects → Buggy Migrations when `float("nan")` in `Q` objects
- Property Cc added
- Property Has patch set
- Property Resolution → fixed
- Property Status assigned → closed
-
Ticket #32967 – Description
v1 v3 9 9 10 10 This constraint is removed and added back every time `python manage.py makemigrations` is run. This is because the inherited `__eq__` function of `Q` objects does not take into account the fact that `float("nan") != float("nan")`. 11 12 See PR: https://github.com/django/django/pull/14706