Changes between Initial Version and Version 1 of Ticket #14566
- Timestamp:
- Oct 26, 2010, 12:29:08 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14566 – Description
initial v1 2 2 3 3 If I perform a filter using the 'scenes' DB I get the expected results: 4 4 {{{ 5 5 Scene.objects.filter(name__contains='ME').using('scenes') 6 6 [<Scene: Scene object>, <Scene: Scene object>] 7 7 }}} 8 8 If I perform a get(), Django seems to get completely confused and appears to read the data from the default database: 9 9 {{{ 10 10 Scene.objects.get(id=3).using('scenes') 11 11 Traceback (most recent call last): … … 29 29 DatabaseError: relation "scene" does not exist 30 30 LINE 1: ...le", "scene"."datasets", "scene"."transform" FROM "scene" WH... 31 31 }}} 32 32 33 33 Anyone else seen this?