diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2017-03-20 16:59:23 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-03-20 07:59:23 -0400 |
| commit | 6cb0a3ac2836c044987f7a0cca0d1e99d52e002e (patch) | |
| tree | c916b76beed0e41dbf9cb4ad67b1734a5082bd7c | |
| parent | cd2ad26cc9369ea470ae72349633791c66887157 (diff) | |
Removed BaseSpatialOperations.truncate_params.
Unused since 32969c3931dea8488ee4ad2849eab43e31e5542e.
| -rw-r--r-- | django/contrib/gis/db/backends/base/operations.py | 2 | ||||
| -rw-r--r-- | django/contrib/gis/db/backends/oracle/operations.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/django/contrib/gis/db/backends/base/operations.py b/django/contrib/gis/db/backends/base/operations.py index ceb899a1e0..8fa1c2cd44 100644 --- a/django/contrib/gis/db/backends/base/operations.py +++ b/django/contrib/gis/db/backends/base/operations.py @@ -1,6 +1,4 @@ class BaseSpatialOperations: - truncate_params = {} - # Quick booleans for the type of this spatial backend, and # an attribute for the spatial database version tuple (if applicable) postgis = False diff --git a/django/contrib/gis/db/backends/oracle/operations.py b/django/contrib/gis/db/backends/oracle/operations.py index 4778da135a..207784e343 100644 --- a/django/contrib/gis/db/backends/oracle/operations.py +++ b/django/contrib/gis/db/backends/oracle/operations.py @@ -115,8 +115,6 @@ class OracleOperations(BaseSpatialOperations, DatabaseOperations): 'dwithin': SDODWithin(), } - truncate_params = {'relate': None} - unsupported_functions = { 'AsGeoJSON', 'AsKML', 'AsSVG', 'Envelope', 'ForceRHR', 'GeoHash', 'MakeValid', 'MemSize', 'Scale', 'SnapToGrid', 'Translate', |
