summaryrefslogtreecommitdiff
path: root/django/db/backends/base/operations.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/backends/base/operations.py')
-rw-r--r--django/db/backends/base/operations.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/base/operations.py b/django/db/backends/base/operations.py
index fd74263a4a..1ddb1010ec 100644
--- a/django/db/backends/base/operations.py
+++ b/django/db/backends/base/operations.py
@@ -163,7 +163,7 @@ class BaseDatabaseOperations:
duplicates.
"""
if fields:
- raise NotImplementedError('DISTINCT ON fields is not supported by this database backend')
+ raise NotSupportedError('DISTINCT ON fields is not supported by this database backend')
else:
return 'DISTINCT'
@@ -604,7 +604,7 @@ class BaseDatabaseOperations:
lhs_sql, lhs_params = lhs
rhs_sql, rhs_params = rhs
return "(%s - %s)" % (lhs_sql, rhs_sql), lhs_params + rhs_params
- raise NotImplementedError("This backend does not support %s subtraction." % internal_type)
+ raise NotSupportedError("This backend does not support %s subtraction." % internal_type)
def window_frame_start(self, start):
if isinstance(start, int):