Skip to content

Commit 14ce2b7

Browse files
committed
Skip test on CockroachDB
1 parent 65b2724 commit 14ce2b7

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

conn_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,6 +1536,10 @@ func TestStmtCacheInvalidationExec(t *testing.T) {
15361536
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
15371537
defer closeConn(t, conn)
15381538

1539+
if conn.PgConn().ParameterStatus("crdb_version") != "" {
1540+
t.Skip("CockroachDB does not support column column type from int to bool")
1541+
}
1542+
15391543
// create a table and fill it with some data
15401544
_, err := conn.Exec(ctx, `
15411545
DROP TABLE IF EXISTS drop_cols;

0 commit comments

Comments
 (0)