Skip to content

Commit

Permalink
sql: skip TestInformationSchemaMySQL
Browse files Browse the repository at this point in the history
Refs: #84915

Reason: There is a mismatch between MySQL version and CRDB in
`pg_metadata_test.go`. More details in the issue above.

Generated by bin/skip-test.

Release justification: non-production code changes

Release note: None
  • Loading branch information
wenyihu6 committed Jul 22, 2022
1 parent 4ce560f commit 95cf7ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/sql/pg_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/sql/sem/tree"
"github.com/cockroachdb/cockroach/pkg/sql/types"
"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/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/log"
Expand Down Expand Up @@ -1532,6 +1533,7 @@ func TestInformationSchemaPostgres(t *testing.T) {
// NOTE: --catalog or --rdbms flags won't take effect on this test.
func TestInformationSchemaMySQL(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 84915, "mismatch between MySQL version and CRDB")
defer log.Scope(t).Close(t)

NewDiffTool(t).Catalog("information_schema").RDBMS(MySQL).Run()
Expand Down

0 comments on commit 95cf7ce

Please sign in to comment.