Changeset 7174
- Timestamp:
- 02/28/08 11:53:00 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/tests/modeltests/one_to_one/models.py
r7096 r7174 7 7 """ 8 8 9 from django.db import models 9 from django.db import models, connection 10 10 11 11 class Place(models.Model): … … 186 186 ... 187 187 IntegrityError: ... 188 189 # Because the unittests all use a single connection, we need to force a 190 # reconnect here to ensure the connection is clean (after the previous 191 # IntegrityError). 192 >>> connection.close() 188 193 """} django/branches/queryset-refactor/tests/regressiontests/queries/models.py
r7170 r7174 538 538 We can do slicing beyond what is currently in the result cache, too. 539 539 540 # FIXME!! This next test causes really weird PostgreSQL behaviour, but it's 541 # only apparent much later when the full test suite runs. I don't understand 542 # what's going on here yet. 543 540 544 # We need to mess with the implemenation internals a bit here to decrease the 541 545 # cache fill size so that we don't read all the results at once.
