mirror of
https://github.com/django/django.git
synced 2025-11-01 20:31:40 +00:00
Fixed #13293 -- Corrected a problem with the MySQL handling of boolean return values when a query has an extra() clause. Thanks to mk for the report and draft patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12939 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
056c940f0d
commit
e9bbdb39de
3 changed files with 11 additions and 3 deletions
|
|
@ -69,6 +69,7 @@ class NullBooleanModel(models.Model):
|
|||
|
||||
class BooleanModel(models.Model):
|
||||
bfield = models.BooleanField()
|
||||
string = models.CharField(max_length=10, default='abc')
|
||||
|
||||
###############################################################################
|
||||
# ImageField
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue