1
0
mirror of https://github.com/django/django.git synced 2025-04-04 21:46:40 +00:00

Fix features check

This commit is contained in:
Aivars Kalvans 2023-09-25 13:15:21 +03:00
parent 298d696ea2
commit cd3ba1edf7

View File

@ -1920,7 +1920,7 @@ class SQLUpdateCompiler(SQLCompiler):
"""
if (
self.query.update_returning
and not self.connection.can_return_columns_from_update
and not self.connection.features.can_return_columns_from_update
):
raise NotSupportedError("This backend does not support UPDATE RETURNING")