Loading django/db/backends/__init__.py +2 −1 Original line number Diff line number Diff line Loading @@ -311,6 +311,7 @@ class BaseDatabaseWrapper(object): to decide in a managed block of code to decide whether there are open changes waiting for commit. """ if not self.autocommit: self._dirty = True def set_clean(self): Loading django/db/backends/postgresql_psycopg2/base.py +0 −4 Original line number Diff line number Diff line Loading @@ -202,10 +202,6 @@ class DatabaseWrapper(BaseDatabaseWrapper): level = self.isolation_level self.connection.set_isolation_level(level) def set_dirty(self): if self.transaction_state and self.transaction_state[-1]: super(DatabaseWrapper, self).set_dirty() def check_constraints(self, table_names=None): """ To check constraints, we set constraints to immediate. Then, when, we're done we must ensure they Loading Loading
django/db/backends/__init__.py +2 −1 Original line number Diff line number Diff line Loading @@ -311,6 +311,7 @@ class BaseDatabaseWrapper(object): to decide in a managed block of code to decide whether there are open changes waiting for commit. """ if not self.autocommit: self._dirty = True def set_clean(self): Loading
django/db/backends/postgresql_psycopg2/base.py +0 −4 Original line number Diff line number Diff line Loading @@ -202,10 +202,6 @@ class DatabaseWrapper(BaseDatabaseWrapper): level = self.isolation_level self.connection.set_isolation_level(level) def set_dirty(self): if self.transaction_state and self.transaction_state[-1]: super(DatabaseWrapper, self).set_dirty() def check_constraints(self, table_names=None): """ To check constraints, we set constraints to immediate. Then, when, we're done we must ensure they Loading