~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to django/contrib/gis/db/backend/mysql/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2009-07-29 11:26:28 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20090729112628-9qrzwnl9x32jxhbg
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__all__ = ['create_spatial_db', 'get_geo_where_clause', 'SpatialBackend']
 
1
__all__ = ['create_test_spatial_db', 'get_geo_where_clause', 'SpatialBackend']
2
2
 
3
3
from django.contrib.gis.db.backend.base import BaseSpatialBackend
4
4
from django.contrib.gis.db.backend.adaptor import WKTAdaptor
5
 
from django.contrib.gis.db.backend.mysql.creation import create_spatial_db
 
5
from django.contrib.gis.db.backend.mysql.creation import create_test_spatial_db
6
6
from django.contrib.gis.db.backend.mysql.field import MySQLGeoField
7
7
from django.contrib.gis.db.backend.mysql.query import *
8
8