Changes between Version 8 and Version 9 of AppEngine


Ignore:
Timestamp:
Feb 13, 2009, 10:03:05 AM (16 years ago)
Author:
Waldemar Kornewald
Comment:

need warnings for emulated features like JOINs

Legend:

Unmodified
Added
Removed
Modified
  • AppEngine

    v8 v9  
    2828 * DISTINCT queries (i.e., no queryset.dates(), etc.)
    2929 * referential integrity
     30
     31== Emulation of SQL features ==
     32
     33It must be possible to detect when an SQL feature like JOIN gets emulated. This is important because you might mistakenly develop something that doesn't scale when your database grows beyond a certain size. In settings.py we could have a flag which specifies whether to throw warnings for emulated features (ENABLE_DB_EMULATION_WARNINGS?). By default, warnings should be enabled, so you never miss potential sources of problems.
    3034
    3135== Schemas ==
Back to Top