mirror of https://github.com/jackc/pgx.git
Skip testing circle type on CockroachDB
parent
c588c47ddd
commit
80e7f6b0d3
|
@ -1795,19 +1795,22 @@ func TestConnSimpleProtocol(t *testing.T) {
|
||||||
// Test high-level type
|
// Test high-level type
|
||||||
|
|
||||||
{
|
{
|
||||||
expected := pgtype.Circle{P: pgtype.Vec2{1, 2}, R: 1.5, Status: pgtype.Present}
|
if conn.PgConn().ParameterStatus("crdb_version") == "" {
|
||||||
actual := expected
|
// CockroachDB doesn't support circle type.
|
||||||
err := conn.QueryRow(
|
expected := pgtype.Circle{P: pgtype.Vec2{1, 2}, R: 1.5, Status: pgtype.Present}
|
||||||
context.Background(),
|
actual := expected
|
||||||
"select $1::circle",
|
err := conn.QueryRow(
|
||||||
pgx.QuerySimpleProtocol(true),
|
context.Background(),
|
||||||
&expected,
|
"select $1::circle",
|
||||||
).Scan(&actual)
|
pgx.QuerySimpleProtocol(true),
|
||||||
if err != nil {
|
&expected,
|
||||||
t.Error(err)
|
).Scan(&actual)
|
||||||
}
|
if err != nil {
|
||||||
if expected != actual {
|
t.Error(err)
|
||||||
t.Errorf("expected %v got %v", expected, actual)
|
}
|
||||||
|
if expected != actual {
|
||||||
|
t.Errorf("expected %v got %v", expected, actual)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue