From 80e7f6b0d3ccdab1761c7539fb338ae7f26d0b62 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 13 Feb 2021 13:37:08 -0600 Subject: [PATCH] Skip testing circle type on CockroachDB --- query_test.go | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/query_test.go b/query_test.go index 74a102be..3120b41d 100644 --- a/query_test.go +++ b/query_test.go @@ -1795,19 +1795,22 @@ func TestConnSimpleProtocol(t *testing.T) { // Test high-level type { - expected := pgtype.Circle{P: pgtype.Vec2{1, 2}, R: 1.5, Status: pgtype.Present} - actual := expected - err := conn.QueryRow( - context.Background(), - "select $1::circle", - pgx.QuerySimpleProtocol(true), - &expected, - ).Scan(&actual) - if err != nil { - t.Error(err) - } - if expected != actual { - t.Errorf("expected %v got %v", expected, actual) + if conn.PgConn().ParameterStatus("crdb_version") == "" { + // CockroachDB doesn't support circle type. + expected := pgtype.Circle{P: pgtype.Vec2{1, 2}, R: 1.5, Status: pgtype.Present} + actual := expected + err := conn.QueryRow( + context.Background(), + "select $1::circle", + pgx.QuerySimpleProtocol(true), + &expected, + ).Scan(&actual) + if err != nil { + t.Error(err) + } + if expected != actual { + t.Errorf("expected %v got %v", expected, actual) + } } }