Skip to content

Commit

Permalink
sql: re-enable public schema migration test
Browse files Browse the repository at this point in the history
Release note: None
  • Loading branch information
RichardJCai committed Apr 19, 2022
1 parent 963b4a0 commit 13487e1
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -229,17 +229,16 @@ SELECT "parentSchemaID" FROM system.namespace WHERE name = $1
}
}

func TestPublicSchemaMigration500Tables(t *testing.T) {
skip.WithIssue(t, 78947)
func TestPublicSchemaMigration250Tables(t *testing.T) {
skip.UnderRace(t, "takes >1min under race")
skip.UnderStress(t, "takes >1min under stress")
defer leaktest.AfterTest(t)()
ctx := context.Background()

publicSchemaMigrationTest(t, ctx, 500)
publicSchemaMigrationTest(t, ctx, 250)
}

func TestPublicSchemaMigration10Tables(t *testing.T) {
skip.WithIssue(t, 78947)
defer leaktest.AfterTest(t)()
ctx := context.Background()

0 comments on commit 13487e1

Please sign in to comment.