From a5c5ae7d9120cba3206a0e31d23c22f4a14a10df Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Tue, 22 Oct 2019 09:30:58 +0100 Subject: Refs #28574 -- Used feature flag for PostgreSQL version check. --- tests/queries/test_explain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/queries/test_explain.py b/tests/queries/test_explain.py index ad4ca988ee..60fce96be3 100644 --- a/tests/queries/test_explain.py +++ b/tests/queries/test_explain.py @@ -56,7 +56,7 @@ class ExplainTests(TestCase): {'verbose': True, 'timing': True, 'analyze': True}, {'verbose': False, 'timing': False, 'analyze': True}, ] - if connection.pg_version >= 100000: + if connection.features.is_postgresql_10: test_options.append({'summary': True}) for options in test_options: with self.subTest(**options), transaction.atomic(): -- cgit v1.2.1