Django

Code

Show
Ignore:
Timestamp:
06/19/08 01:00:13 (7 months ago)
Author:
jbronn
Message:

gis: Fixed spatial aggregates when an ordering was specified (thanks ingenieroariel); added bboverlaps to MySQL lookup types for API consistency.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/gis/django/contrib/gis/db/backend/mysql/query.py

    r7104 r7699  
    2020MYSQL_GIS_FUNCTIONS = { 
    2121    'bbcontains' : 'MBRContains', # For consistency w/PostGIS API 
    22     'contained' : 'MBRWithin',    # (ditto) 
     22    'bboverlaps' : 'MBROverlaps', # .. .. 
     23    'contained' : 'MBRWithin',    # .. .. 
    2324    'contains' : 'MBRContains', 
    2425    'disjoint' : 'MBRDisjoint',