diff options
Diffstat (limited to 'django/db/backends/base/features.py')
| -rw-r--r-- | django/db/backends/base/features.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index cbf3f024d9..4ef7cc24a6 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -236,6 +236,9 @@ class BaseDatabaseFeatures: # Does the backend support indexing a TextField? supports_index_on_text_field = True + # Does the backed support window expressions (expression OVER (...))? + supports_over_clause = False + # Does the backend support CAST with precision? supports_cast_with_precision = True |
