From a26c93551fc0951bb2b9af8581cfe9429c6fe3a5 Mon Sep 17 00:00:00 2001
From: Jack Christensen <jack@jackchristensen.com>
Date: Sat, 25 Jan 2025 08:15:40 -0600
Subject: [PATCH] Skip TestCompositeCodecTranscodeStructWrapperForTable

---
 pgtype/composite_test.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pgtype/composite_test.go b/pgtype/composite_test.go
index 0d417a6f..1eedc89a 100644
--- a/pgtype/composite_test.go
+++ b/pgtype/composite_test.go
@@ -206,6 +206,8 @@ create type point3d as (
 //
 // https://github.com/jackc/pgx/issues/1576
 func TestCompositeCodecTranscodeStructWrapperForTable(t *testing.T) {
+	skipCockroachDB(t, "Server does not support composite types from table definitions")
+
 	defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
 
 		_, err := conn.Exec(ctx, `drop table if exists point3d;