Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#11381 closed (fixed)

select_related over nullable ForeignKey using GeoQuerySet and GeoManager gives blank object rather than None

Reported by: Brett Hoerner Owned by: nobody
Component: GIS Version: 1.1-beta
Severity: Keywords: geodjango geo select_related geomanager
Cc: dgouldin@… Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: yes Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Sorry for the bad title... I can only explain this with an example,

from django.contrib.gis.db import models

class Author(models.Model):
    name = models.CharField(max_length=100)

class BookManager(models.GeoManager):
    def get_query_set(self):
        return super(BookManager, self).get_query_set().select_related('author')

class Book(models.Model):
    name = models.CharField(max_length=100)
    author = models.ForeignKey(Author, related_name="books", null=True, blank=True)

    objects = BookManager()
>>> Book.objects.create(name='Without Author')
<Book: Book object>

>>> b = Book.objects.get(name='Without Author')

>>> b.author
<Author: Author object>

>>> b.author.name

As you can see, rather than b.author being None, is it an "empty" Author object. This isn't the case when using non-GeoDjango.

What's even weirder is that this only happens when using the GeoManager. If you remove the manager and run the select_related yourself, the following happens,

>>> Book.objects.select_related('author').get(name='Without Author').author

It's None, rather than the "empty" Author from above.

Attachments (1)

11381.diff (501 bytes ) - added by David Gouldin 15 years ago.

Download all attachments as: .zip

Change History (7)

comment:1 by David Gouldin, 15 years ago

Cc: dgouldin@… added

comment:2 by David Gouldin, 15 years ago

Looks like the row being passed to django.db.models.query.get_cached_row is a list, not a tuple, which causes fields == (None,) * field_count to always fail. Thus obj is instantiated at times it should be set to None.

by David Gouldin, 15 years ago

Attachment: 11381.diff added

comment:3 by David Gouldin, 15 years ago

Has patch: set

comment:4 by Alex Gaynor, 15 years ago

Needs tests: set
Triage Stage: UnreviewedAccepted

comment:5 by jbronn, 15 years ago

Resolution: fixed
Status: newclosed

(In [11123]) Fixed #11381 -- GeoManager + select_related + nullable ForeignKey now works correctly. Thanks, bretthoerner for ticket and dgouldin for initial patch.

comment:6 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top