diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 275530e27b..d9edce3fa1 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -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")