Refs #27996 -- Fixed postgres_tests crash if not running with PostgreSQL.

This commit is contained in:
Mariusz Felisiak 2020-07-31 12:38:09 +02:00 committed by GitHub
parent 8703680ebe
commit 88af11c58b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ except ImportError:
UnaccentExtension = mock.Mock() UnaccentExtension = mock.Mock()
needs_crypto_extension = False needs_crypto_extension = False
else: else:
needs_crypto_extension = not connection.features.is_postgresql_13 needs_crypto_extension = (
connection.vendor == 'postgresql' and
not connection.features.is_postgresql_13
)
class Migration(migrations.Migration): class Migration(migrations.Migration):