mirror of https://github.com/django/django.git
Refs #27996 -- Fixed postgres_tests crash if not running with PostgreSQL.
This commit is contained in:
parent
8703680ebe
commit
88af11c58b
|
@ -19,7 +19,10 @@ except ImportError:
|
|||
UnaccentExtension = mock.Mock()
|
||||
needs_crypto_extension = False
|
||||
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):
|
||||
|
|
Loading…
Reference in New Issue