diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-10-27 15:05:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-27 15:05:23 +0100 |
| commit | c87daabbf32779f5421a846dd33a7dd46cc27d54 (patch) | |
| tree | fca1e4216a722899bfe41ee1cd82d7dc71d35a41 /tests/queries | |
| parent | 4744e9939b65d168c531e5e23d1ac8a4445ac7f9 (diff) | |
Fixed #36624 -- Dropped support for MySQL < 8.4.
Diffstat (limited to 'tests/queries')
| -rw-r--r-- | tests/queries/test_explain.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/queries/test_explain.py b/tests/queries/test_explain.py index 95ca913cfc..59bd0e8d08 100644 --- a/tests/queries/test_explain.py +++ b/tests/queries/test_explain.py @@ -159,9 +159,7 @@ class ExplainTests(TestCase): self.assertEqual(len(captured_queries), 1) self.assertIn("FORMAT=TRADITIONAL", captured_queries[0]["sql"]) - @unittest.skipUnless( - connection.vendor == "mysql", "MariaDB and MySQL >= 8.0.18 specific." - ) + @unittest.skipUnless(connection.vendor == "mysql", "MySQL specific") def test_mysql_analyze(self): qs = Tag.objects.filter(name="test") with CaptureQueriesContext(connection) as captured_queries: |
