Made an aggregate test pass with spatialite backend

backends.tests.SqliteAggregationTests was failing with spatialite.
This commit is contained in:
Claude Paroz 2013-07-09 19:44:57 +02:00
parent 3c736207a3
commit 550b6195ed
1 changed files with 1 additions and 0 deletions

View File

@ -169,6 +169,7 @@ class SpatiaLiteOperations(DatabaseOperations, BaseSpatialOperations):
Checks if the given aggregate name is supported (that is, if it's
in `self.valid_aggregates`).
"""
super(SpatiaLiteOperations, self).check_aggregate_support(aggregate)
agg_name = aggregate.__class__.__name__
return agg_name in self.valid_aggregates