We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65b2724 commit 14ce2b7Copy full SHA for 14ce2b7
1 file changed
conn_test.go
@@ -1536,6 +1536,10 @@ func TestStmtCacheInvalidationExec(t *testing.T) {
1536
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
1537
defer closeConn(t, conn)
1538
1539
+ if conn.PgConn().ParameterStatus("crdb_version") != "" {
1540
+ t.Skip("CockroachDB does not support column column type from int to bool")
1541
+ }
1542
+
1543
// create a table and fill it with some data
1544
_, err := conn.Exec(ctx, `
1545
DROP TABLE IF EXISTS drop_cols;
0 commit comments