Skip test on CockroachDB

pull/1281/head
Jack Christensen 2022-07-09 21:08:15 -05:00
parent 80a529fcb7
commit 731daea586
1 changed files with 2 additions and 0 deletions

View File

@ -908,6 +908,8 @@ func TestDomainType(t *testing.T) {
func TestLoadTypeSameNameInDifferentSchemas(t *testing.T) {
pgxtest.RunWithQueryExecModes(context.Background(), t, defaultConnTestRunner, nil, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
pgxtest.SkipCockroachDB(t, conn, "Server does support composite types (https://github.com/cockroachdb/cockroach/issues/27792)")
tx, err := conn.Begin(ctx)
require.NoError(t, err)
defer tx.Rollback(ctx)