From 4d54ee80a3d4137206683a12ae59254d7fbdad74 Mon Sep 17 00:00:00 2001 From: ivyazmitinov Date: Fri, 28 Jun 2024 18:58:18 +0200 Subject: [PATCH] Fix tests --- ...test_multiple_databases_distributed_deadlock_detection.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/regress/citus_tests/test/test_multiple_databases_distributed_deadlock_detection.py b/src/test/regress/citus_tests/test/test_multiple_databases_distributed_deadlock_detection.py index b9cd9596b..58ad565c5 100644 --- a/src/test/regress/citus_tests/test/test_multiple_databases_distributed_deadlock_detection.py +++ b/src/test/regress/citus_tests/test/test_multiple_databases_distributed_deadlock_detection.py @@ -147,3 +147,8 @@ async def test_multiple_databases_distributed_deadlock_detection(cluster): ) too_many_clients_errors_count = cursor.fetchone()[0] assert too_many_clients_errors_count == 0 + + for db_name in db_names: + cluster.coordinator.sql( + "DROP TABLE public.deadlock_detection_test", dbname=db_name + )