Changes between Initial Version and Version 2 of Ticket #13293
- Timestamp:
- Apr 8, 2010, 5:57:50 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13293
- Property Has patch set
- Property Keywords MySQL added
- Property Summary r12900 breaks extra() with additional select clauses → r12900 breaks extra() with additional select clauses (Only applies to MySQL SQLCompiler)
-
Ticket #13293 – Description
initial v2 11 11 Note that this bug only manifests itself under the following conditions: 12 12 13 1. The first model field is an AutoField14 2. The second field is a (Null)?BooleanField15 3. The retrieved model has a PK of 1L (0L would also work, but auto incrementing primary key fields never have a value of 0L)13 1. The first model field is an AutoField 14 2. The second field is a (Null)?BooleanField 15 3. The retrieved model has a PK of 1L (0L would also work, but auto incrementing primary key fields never have a value of 0L) 16 16 17 17 The resulting model instance has True instead of 1L as its PK.