Changes between Initial Version and Version 1 of Ticket #25265, comment 3


Ignore:
Timestamp:
Aug 13, 2015, 12:11:44 AM (9 years ago)
Author:
Samuel Bishop

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25265, comment 3

    initial v1  
    11RE: akaariai
    22--
    3 The situation between 'comparable' database backends should actually 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.
     3The 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.
    44'Non comparable' backends should probably raise an error, something like {{{NotImplemented}}} perhaps.
    55--
Back to Top