Changes between Version 1 and Version 2 of NoSqlSupport
- Timestamp:
- Dec 10, 2010, 12:34:11 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NoSqlSupport
v1 v2 30 30 }}} 31 31 32 This is not implemented in Django-nonrel. 33 32 34 = select_related() = 33 35 34 36 Django implements this in a way that requires JOINs, so this doesn't work on non-relational DBs. Still, this feature should be supported by NoSQL backends. Django needs to provide an easier format for NoSQL backends and the result value should also be simplified, as described above in "Representing result rows". 37 38 Django-nonrel merely provides a `connection.feature.supports_select_related` flag which tells `QuerySet` that the backend won't return additional data for the related data in the result rows (otherwise `select_related()` causes bad results full of `None` values). 35 39 36 40 = AutoField =