summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/backends/tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py
index 9d3e4a4bf1..a40a6156e0 100644
--- a/tests/backends/tests.py
+++ b/tests/backends/tests.py
@@ -701,6 +701,11 @@ class BackendTestCase(TestCase):
new_connections = ConnectionHandler(settings.DATABASES)
new_connection = new_connections[DEFAULT_DB_ALIAS]
+ # Initialize the connection and clear initialization statements.
+ with new_connection.cursor():
+ pass
+ new_connection.queries_log.clear()
+
try:
with new_connection.cursor() as cursor:
cursor.execute("SELECT 1" + new_connection.features.bare_select_suffix)