Skip to content

Commit

Permalink
backupccl: skip more TestProtectedTimestampSpanSelectionDuringBackup …
Browse files Browse the repository at this point in the history
…subtests

Informs cockroachdb#57546.

Release justification: non-production code change.

Release note: None
  • Loading branch information
RaduBerinde committed Mar 3, 2021
1 parent bec3bd0 commit 514f2ab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/ccl/backupccl/backup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5868,6 +5868,7 @@ func TestProtectedTimestampSpanSelectionDuringBackup(t *testing.T) {
})

t.Run("interleaved-spans", func(t *testing.T) {
skip.WithIssue(t, 57546, "flaky test")
runner.Exec(t, "CREATE DATABASE test; USE test;")
runner.Exec(t, "CREATE TABLE grandparent (a INT PRIMARY KEY, v BYTES, INDEX gpindex (v))")
runner.Exec(t, "CREATE TABLE parent (a INT, b INT, v BYTES, "+
Expand All @@ -5886,6 +5887,7 @@ func TestProtectedTimestampSpanSelectionDuringBackup(t *testing.T) {
})

t.Run("revs-span-merge", func(t *testing.T) {
skip.WithIssue(t, 57546, "flaky test")
runner.Exec(t, "CREATE DATABASE test; USE test;")
runner.Exec(t, "CREATE TABLE foo (k INT PRIMARY KEY, v BYTES, name STRING, "+
"INDEX baz(name), INDEX bar (v))")
Expand Down Expand Up @@ -5919,6 +5921,7 @@ func TestProtectedTimestampSpanSelectionDuringBackup(t *testing.T) {
})

t.Run("last-index-dropped", func(t *testing.T) {
skip.WithIssue(t, 57546, "flaky test")
runner.Exec(t, "CREATE DATABASE test; USE test;")
runner.Exec(t, "CREATE TABLE foo (k INT PRIMARY KEY, v BYTES, name STRING, INDEX baz(name))")
runner.Exec(t, "CREATE TABLE foo2 (k INT PRIMARY KEY, v BYTES, name STRING, INDEX baz(name))")
Expand Down

0 comments on commit 514f2ab

Please sign in to comment.