django/tests/backends/base
Matthijs Kooijman 98f23a8af0 Fixed #26552 -- Deferred constraint checks when reloading the database with data for tests.
deserialize_db_from_string() loads the full serialized database
contents, which might contain forward references and cycles. That
caused IntegrityError because constraints were checked immediately.

Now, it loads data in a transaction with constraint checks deferred
until the end of the transaction.
2020-02-14 13:18:06 +01:00
..
__init__.py
test_base.py
test_creation.py Fixed #26552 -- Deferred constraint checks when reloading the database with data for tests. 2020-02-14 13:18:06 +01:00
test_features.py
test_operations.py
test_schema.py