1
0
mirror of https://github.com/django/django.git synced 2025-10-30 17:16:10 +00:00

[1.5.x] Fixed empty strings + to_field regression on Oracle

Querying the reverse side of nullable to_field relation, where both
sides can contain null values resulted in incorrect results. The reason
was not detecting '' as NULL.

Refs #17541, backpatch of 09fcb70c80.
This commit is contained in:
Anssi Kääriäinen
2013-02-23 00:00:41 +02:00
parent b17a572eb3
commit 8a99d718f7
2 changed files with 4 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ class ManyToOneRegressionTests(TestCase):
# Now the model is saved, so we will need to execute an query.
with self.assertNumQueries(1):
self.assertEqual(th.child_set.count(), 0)
def test_related_null_to_field(self):
c1 = Car.objects.create()
c2 = Car.objects.create()