MCPcopy
hub / github.com/django/django / _savepoint_rollback

Method _savepoint_rollback

django/db/backends/base/base.py:369–371  ·  view source on GitHub ↗
(self, sid)

Source from the content-addressed store, hash-verified

367 cursor.execute(self.ops.savepoint_create_sql(sid))
368
369 def _savepoint_rollback(self, sid):
370 with self.cursor() as cursor:
371 cursor.execute(self.ops.savepoint_rollback_sql(sid))
372
373 def _savepoint_commit(self, sid):
374 with self.cursor() as cursor:

Callers 1

savepoint_rollbackMethod · 0.95

Calls 3

cursorMethod · 0.95
executeMethod · 0.45

Tested by

no test coverage detected