Changes between Initial Version and Version 1 of Ticket #25265, comment 3
- Timestamp:
- Aug 13, 2015, 12:11:44 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25265, comment 3
initial v1 1 1 RE: akaariai 2 2 -- 3 The situation between 'comparable' database backends should actuallybe more like what will happen if you did the same query {{{User.objects.filter(id=10).using('postgres')}}} with a MySQL and PostgreSQL backend. I can't say I've done that myself, but if it raises an error, it should raise an error between a sql and a nonsql backend.3 The situation between 'comparable' database backends should be more like what will happen if you did the same query {{{User.objects.filter(id=10).using('postgres')}}} with a MySQL and PostgreSQL backend. I can't say I've done that myself, but if it raises an error, it should raise an error between a sql and a nonsql backend. 4 4 'Non comparable' backends should probably raise an error, something like {{{NotImplemented}}} perhaps. 5 5 --