2006-10-14 10:48:05 +08:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
class Poll(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
question = models.CharField(max_length=200)
|
2006-10-14 10:48:05 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
|
|
|
return u"Q: %s " % self.question
|
2006-10-14 10:48:05 +08:00
|
|
|
|
|
|
|
class Choice(models.Model):
|
|
|
|
poll = models.ForeignKey(Poll)
|
2007-08-05 13:14:46 +08:00
|
|
|
choice = models.CharField(max_length=200)
|
2006-10-14 10:48:05 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
|
|
|
return u"Choice: %s in poll %s" % (self.choice, self.poll)
|
2006-10-14 10:48:05 +08:00
|
|
|
|
2009-03-06 10:02:09 +08:00
|
|
|
# A set of models with an inner one pointing to two outer ones.
|
|
|
|
class OuterA(models.Model):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class OuterB(models.Model):
|
|
|
|
data = models.CharField(max_length=10)
|
|
|
|
|
|
|
|
class Inner(models.Model):
|
|
|
|
first = models.ForeignKey(OuterA)
|
|
|
|
second = models.ForeignKey(OuterB, null=True)
|
|
|
|
|
2006-10-14 10:48:05 +08:00
|
|
|
__test__ = {'API_TESTS':"""
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
# Regression test for the use of None as a query value. None is interpreted as
|
2006-10-14 10:48:05 +08:00
|
|
|
# an SQL NULL, but only in __exact queries.
|
|
|
|
# Set up some initial polls and choices
|
|
|
|
>>> p1 = Poll(question='Why?')
|
|
|
|
>>> p1.save()
|
|
|
|
>>> c1 = Choice(poll=p1, choice='Because.')
|
|
|
|
>>> c1.save()
|
|
|
|
>>> c2 = Choice(poll=p1, choice='Why Not?')
|
|
|
|
>>> c2.save()
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
# Exact query with value None returns nothing ("is NULL" in sql, but every 'id'
|
|
|
|
# field has a value).
|
|
|
|
>>> Choice.objects.filter(choice__exact=None)
|
2006-10-14 10:48:05 +08:00
|
|
|
[]
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
Excluding the previous result returns everything.
|
|
|
|
>>> Choice.objects.exclude(choice=None).order_by('id')
|
|
|
|
[<Choice: Choice: Because. in poll Q: Why? >, <Choice: Choice: Why Not? in poll Q: Why? >]
|
|
|
|
|
2006-10-14 10:48:05 +08:00
|
|
|
# Valid query, but fails because foo isn't a keyword
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
>>> Choice.objects.filter(foo__exact=None)
|
2006-10-14 10:48:05 +08:00
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
FieldError: Cannot resolve keyword 'foo' into field. Choices are: choice, id, poll
|
2006-10-14 10:48:05 +08:00
|
|
|
|
|
|
|
# Can't use None on anything other than __exact
|
|
|
|
>>> Choice.objects.filter(id__gt=None)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
ValueError: Cannot use None as a query value
|
|
|
|
|
|
|
|
# Can't use None on anything other than __exact
|
|
|
|
>>> Choice.objects.filter(foo__gt=None)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
ValueError: Cannot use None as a query value
|
|
|
|
|
|
|
|
# Related managers use __exact=None implicitly if the object hasn't been saved.
|
|
|
|
>>> p2 = Poll(question="How?")
|
|
|
|
>>> p2.choice_set.all()
|
|
|
|
[]
|
|
|
|
|
2009-03-06 10:02:09 +08:00
|
|
|
# Querying across reverse relations and then another relation should insert
|
|
|
|
# outer joins correctly so as not to exclude results.
|
|
|
|
>>> obj = OuterA.objects.create()
|
|
|
|
>>> OuterA.objects.filter(inner__second=None)
|
|
|
|
[<OuterA: OuterA object>]
|
|
|
|
>>> OuterA.objects.filter(inner__second__data=None)
|
|
|
|
[<OuterA: OuterA object>]
|
|
|
|
>>> _ = Inner.objects.create(first=obj)
|
|
|
|
>>> Inner.objects.filter(first__inner__second=None)
|
|
|
|
[<Inner: Inner object>]
|
|
|
|
|
|
|
|
|
2006-10-14 10:48:05 +08:00
|
|
|
"""}
|