From 37ef8515f0bfa656fad9a4e8a93d49ed268954d6 Mon Sep 17 00:00:00 2001 From: Lidor Carmel Date: Thu, 27 Jan 2022 11:36:46 -0800 Subject: [PATCH] sql: skip TestDistSQLFlowsVirtualTables Refs: #75208 Reason: flaky test under race Generated by bin/skip-test. Release justification: non-production code changes Release note: None --- pkg/sql/crdb_internal_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/sql/crdb_internal_test.go b/pkg/sql/crdb_internal_test.go index ebdbde9b9537..07889983faf4 100644 --- a/pkg/sql/crdb_internal_test.go +++ b/pkg/sql/crdb_internal_test.go @@ -41,6 +41,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/tests" "github.com/cockroachdb/cockroach/pkg/testutils" "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" + "github.com/cockroachdb/cockroach/pkg/testutils/skip" "github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" "github.com/cockroachdb/cockroach/pkg/testutils/testcluster" "github.com/cockroachdb/cockroach/pkg/util/ctxgroup" @@ -516,6 +517,7 @@ UPDATE system.namespace SET id = 12345 WHERE id = %d; func TestDistSQLFlowsVirtualTables(t *testing.T) { defer leaktest.AfterTest(t)() + skip.UnderRaceWithIssue(t, 75208, "flaky test under race") defer log.Scope(t).Close(t) const numNodes = 3