Ticket #16408: 16408.1.diff

File 16408.1.diff, 5.5 KB (added by jbronn, 13 years ago)
  • django/contrib/gis/db/backends/spatialite/base.py

    diff --git a/django/contrib/gis/db/backends/spatialite/base.py b/django/contrib/gis/db/backends/spatialite/base.py
    a b  
    22from django.conf import settings
    33
    44from django.core.exceptions import ImproperlyConfigured
    5 from django.db.backends.sqlite3.base import *
    65from django.db.backends.sqlite3.base import (
    7     _sqlite_extract, _sqlite_date_trunc, _sqlite_regexp,
    8     DatabaseWrapper as SqliteDatabaseWrapper)
     6    _sqlite_extract, _sqlite_date_trunc, _sqlite_regexp, _sqlite_format_dtdelta,
     7    connection_created, Database, DatabaseWrapper as SQLiteDatabaseWrapper,
     8    SQLiteCursorWrapper)
    99from django.contrib.gis.db.backends.spatialite.client import SpatiaLiteClient
    1010from django.contrib.gis.db.backends.spatialite.creation import SpatiaLiteCreation
    1111from django.contrib.gis.db.backends.spatialite.introspection import SpatiaLiteIntrospection
    1212from django.contrib.gis.db.backends.spatialite.operations import SpatiaLiteOperations
    1313
    14 class DatabaseWrapper(SqliteDatabaseWrapper):
     14class DatabaseWrapper(SQLiteDatabaseWrapper):
    1515    def __init__(self, *args, **kwargs):
    1616        # Before we get too far, make sure pysqlite 2.5+ is installed.
    1717        if Database.version_info < (2, 5, 0):
     
    5252            self.connection.create_function("django_extract", 2, _sqlite_extract)
    5353            self.connection.create_function("django_date_trunc", 2, _sqlite_date_trunc)
    5454            self.connection.create_function("regexp", 2, _sqlite_regexp)
     55            self.connection.create_function("django_format_dtdelta", 5, _sqlite_format_dtdelta)
    5556            connection_created.send(sender=self.__class__, connection=self)
    5657
    5758            ## From here on, customized for GeoDjango ##
  • new file django/contrib/gis/db/backends/spatialite/compiler.py

    diff --git a/django/contrib/gis/db/backends/spatialite/compiler.py b/django/contrib/gis/db/backends/spatialite/compiler.py
    new file mode 100644
    - +  
     1from django.db.backends.util import typecast_timestamp
     2from django.db.models.sql import compiler
     3from django.db.models.sql.constants import MULTI
     4from django.contrib.gis.db.models.sql.compiler import GeoSQLCompiler as BaseGeoSQLCompiler
     5
     6SQLCompiler = compiler.SQLCompiler
     7
     8class GeoSQLCompiler(BaseGeoSQLCompiler, SQLCompiler):
     9    pass
     10
     11class SQLInsertCompiler(compiler.SQLInsertCompiler, GeoSQLCompiler):
     12    pass
     13
     14class SQLDeleteCompiler(compiler.SQLDeleteCompiler, GeoSQLCompiler):
     15    pass
     16
     17class SQLUpdateCompiler(compiler.SQLUpdateCompiler, GeoSQLCompiler):
     18    pass
     19
     20class SQLAggregateCompiler(compiler.SQLAggregateCompiler, GeoSQLCompiler):
     21    pass
     22
     23class SQLDateCompiler(compiler.SQLDateCompiler, GeoSQLCompiler):
     24    """
     25    This is overridden for GeoDjango to properly cast date columns, see #16757.
     26    """
     27    def results_iter(self):
     28        offset = len(self.query.extra_select)
     29        for rows in self.execute_sql(MULTI):
     30            for row in rows:
     31                date = typecast_timestamp(str(row[offset]))
     32                yield date
  • django/contrib/gis/db/backends/spatialite/operations.py

    diff --git a/django/contrib/gis/db/backends/spatialite/operations.py b/django/contrib/gis/db/backends/spatialite/operations.py
    a b  
    4848    return (SpatiaLiteDistance(operator),)
    4949
    5050class SpatiaLiteOperations(DatabaseOperations, BaseSpatialOperations):
    51     compiler_module = 'django.contrib.gis.db.models.sql.compiler'
     51    compiler_module = 'django.contrib.gis.db.backends.spatialite.compiler'
    5252    name = 'spatialite'
    5353    spatialite = True
    5454    version_regex = re.compile(r'^(?P<major>\d)\.(?P<minor1>\d)\.(?P<minor2>\d+)')
  • django/contrib/gis/tests/geoapp/models.py

    diff --git a/django/contrib/gis/tests/geoapp/models.py b/django/contrib/gis/tests/geoapp/models.py
    a b  
    1919# This is an inherited model from City
    2020class PennsylvaniaCity(City):
    2121    county = models.CharField(max_length=30)
     22    founded = models.DateTimeField(null=True)
    2223    objects = models.GeoManager() # TODO: This should be implicitly inherited.
    2324
    2425class State(models.Model):
  • django/contrib/gis/tests/geoapp/test_regress.py

    diff --git a/django/contrib/gis/tests/geoapp/test_regress.py b/django/contrib/gis/tests/geoapp/test_regress.py
    a b  
    1 import unittest
     1from datetime import datetime
    22from django.contrib.gis.tests.utils import no_mysql, no_spatialite
    33from django.contrib.gis.shortcuts import render_to_kmz
    4 from models import City
     4from django.test import TestCase
     5from models import City, PennsylvaniaCity
    56
    6 class GeoRegressionTests(unittest.TestCase):
     7class GeoRegressionTests(TestCase):
    78
    89    def test01_update(self):
    910        "Testing GeoQuerySet.update(), see #10411."
     
    3536        extent = City.objects.filter(name='Pueblo').extent()
    3637        for ref_val, val in zip(ref_ext, extent):
    3738            self.assertAlmostEqual(ref_val, val, 4)
     39
     40    def test04_unicode_date(self):
     41        "Testing dates are converted properly, even on SpatiaLite, see #16408."
     42        founded = datetime(1857, 5, 23)
     43        mansfield = PennsylvaniaCity.objects.create(name='Mansfield', county='Tioga', point='POINT(-77.071445 41.823881)',
     44                                                    founded=founded)
     45        self.assertEqual(founded, PennsylvaniaCity.objects.dates('founded', 'day')[0])
Back to Top