Ticket #12851: 12851_inheritance_regression_test_2.patch

File 12851_inheritance_regression_test_2.patch, 550 bytes (added by Gregor Müllegger, 14 years ago)

Here is another testcase using "only" instead of "defer" which fails with the current trunk.

  • tests/regressiontests/select_related_regress/models.py

     
    197197>>> troy.state.name
    198198u'Western Australia'
    199199
     200>>> troy = SpecialClient.objects.select_related('state').only('name').get(name='Troy Buswell')
     201>>> troy.name
     202u'Troy Buswell'
     203>>> troy.value
     20442
     205>>> troy.state.name
     206u'Western Australia'
     207
    200208"""}
Back to Top