mirror of
https://github.com/jackc/pgx.git
synced 2025-05-31 11:42:24 +00:00
Skip number type dependent test for CockroachDB
This commit is contained in:
parent
a3d5992acc
commit
0673179d95
@ -1361,6 +1361,10 @@ func TestQueryContextErrorWhileReceivingRows(t *testing.T) {
|
||||
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
||||
defer closeConn(t, conn)
|
||||
|
||||
if conn.PgConn().ParameterStatus("crdb_version") != "" {
|
||||
t.Skip("Server uses numeric instead of int")
|
||||
}
|
||||
|
||||
ctx, cancelFunc := context.WithCancel(context.Background())
|
||||
defer cancelFunc()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user