Skip json format test on CockroachDB

pull/1683/head
Jack Christensen 2023-07-11 20:51:22 -05:00
parent 524f661136
commit e0c70201dc
1 changed files with 2 additions and 0 deletions

View File

@ -150,6 +150,8 @@ func (t ChildIssue1681) MarshalJSON() ([]byte, error) {
// https://github.com/jackc/pgx/issues/1681
func TestJSONCodecEncodeJSONMarshalerThatCanBeWrapped(t *testing.T) {
skipCockroachDB(t, "CockroachDB treats json as jsonb. This causes it to format differently than PostgreSQL.")
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
var jsonStr string
err := conn.QueryRow(context.Background(), "select $1::json", &ParentIssue1681{}).Scan(&jsonStr)