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.
2 parents 7aca058 + ceddd31 commit 481da68Copy full SHA for 481da68
pkg/sql/tests/rsg_test.go
@@ -343,6 +343,11 @@ func TestRandomSyntaxGeneration(t *testing.T) {
343
if strings.Contains(s, "EXPERIMENTAL SCRUB DATABASE SYSTEM") {
344
return errors.New("See #43693")
345
}
346
+ if strings.Contains(s, "CHECK EXTERNAL CONNECTION") {
347
+ // `CHECK EXTERNAL CONNECTION` is fixed by PR #149260 on master, but the fix does not
348
+ // meet the backport policy.
349
+ return errors.New("See #147876")
350
+ }
351
// Recreate the database on every run in case it was renamed in
352
// a previous run. Should always succeed.
353
if err := db.exec(t, ctx, `CREATE DATABASE IF NOT EXISTS ident`); err != nil {
0 commit comments