Changes between Initial Version and Version 1 of Ticket #8904
- Timestamp:
- Sep 7, 2008, 1:03:34 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8904
- Property Owner changed from to
- Property Summary geodjango should return more informative error for mysql non-support → geodjango should return more informative error for lack of MySQL distance queries
- Property Version 1.0-beta-1 → 1.0
-
Ticket #8904 – Description
initial v1 1 1 A better error should be reported for when a distance lookup is attempted with mysql: 2 2 3 3 {{{ 4 4 >>> qs = Building.gobjects.filter(geo_loc__distance_lte=(x, D(km=7))) 5 5 Traceback (most recent call last): … … 18 18 raise FieldError("Join on field %r not permitted." % name) 19 19 FieldError: Join on field 'geo_loc' not permitted. 20 }}}