mirror of https://github.com/jackc/pgx.git
Skip test on CockroachDB
parent
80a529fcb7
commit
731daea586
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue