From 6933c0584cf5fa9534a689a347c5b5e6cbc450a2 Mon Sep 17 00:00:00 2001 From: Harshit Gangal Date: Thu, 12 Dec 2024 16:09:38 +0530 Subject: [PATCH] test: fix clean up table Signed-off-by: Harshit Gangal --- go/test/endtoend/transaction/twopc/stress/main_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/test/endtoend/transaction/twopc/stress/main_test.go b/go/test/endtoend/transaction/twopc/stress/main_test.go index 0e5db96896f..5771013310b 100644 --- a/go/test/endtoend/transaction/twopc/stress/main_test.go +++ b/go/test/endtoend/transaction/twopc/stress/main_test.go @@ -123,4 +123,5 @@ func start(t *testing.T) (*mysql.Conn, func()) { func cleanup(t *testing.T) { utils.ClearOutTable(t, vtParams, "twopc_fuzzer_insert") utils.ClearOutTable(t, vtParams, "twopc_fuzzer_update") + utils.ClearOutTable(t, vtParams, "twopc_t1") }