From 080b31a56771139fb6e1d88936a97de90efa9772 Mon Sep 17 00:00:00 2001 From: Faizan Qazi Date: Tue, 27 Jul 2021 11:12:52 -0400 Subject: [PATCH] sql: re-enable test TestImportPgDumpSchemas/inject-error-ensure-cleanup Fixes: #65878 Previously, this test was disable because it was acting flaky and failing in a fairly consistent manner. This was inadequate because the flaky failures have disappeared. To address this, this patch re-enables the test since we can't reproduce the failure after multiple attempts. Release note: None --- pkg/ccl/importccl/import_stmt_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/ccl/importccl/import_stmt_test.go b/pkg/ccl/importccl/import_stmt_test.go index 89bcb176f967..1d7aa094a0aa 100644 --- a/pkg/ccl/importccl/import_stmt_test.go +++ b/pkg/ccl/importccl/import_stmt_test.go @@ -5996,7 +5996,6 @@ table_name FROM [SHOW TABLES] ORDER BY (schema_name, table_name)`, }) t.Run("inject-error-ensure-cleanup", func(t *testing.T) { - skip.WithIssue(t, 65878, "flaky test") defer gcjob.SetSmallMaxGCIntervalForTest()() tc := testcluster.StartTestCluster(t, nodes, base.TestClusterArgs{ServerArgs: args}) defer tc.Stopper().Stop(ctx)