Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-24.1: sql: fix TestRandomSyntaxSchemaChangeDatabase flake #128975

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions pkg/sql/tests/rsg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"os"
"regexp"
"strings"
"sync/atomic"
"testing"
"time"

Expand Down Expand Up @@ -511,16 +512,30 @@ func TestRandomSyntaxSchemaChangeDatabase(t *testing.T) {
"drop_user_stmt",
"alter_user_stmt",
}

// Create multiple databases, so that in concurrent scenarios two connections
// will always share the same database.
numDatabases := max(*flagRSGGoRoutines/2, 1)
databases := make([]string, 0, numDatabases)
for dbIdx := 0; dbIdx < numDatabases; dbIdx++ {
databases = append(databases, fmt.Sprintf("ident_%d", dbIdx))
}
var nextDatabaseName atomic.Int64
testRandomSyntax(t, true, "ident", func(ctx context.Context, db *verifyFormatDB, r *rsg.RSG) error {
if err := db.exec(t, ctx, "SET CLUSTER SETTING sql.catalog.descriptor_lease_duration = '30s'"); err != nil {
return err
}
return db.exec(t, ctx, `CREATE DATABASE ident;`)
for _, dbName := range databases {
if err := db.exec(t, ctx, fmt.Sprintf(`CREATE DATABASE %s;`, dbName)); err != nil {
return err
}
}
return nil
}, func(ctx context.Context, db *verifyFormatDB, r *rsg.RSG) error {
n := r.Intn(len(roots))
s := r.Generate(roots[n], 30)
return db.exec(t, ctx, s)
// Select a database and use it in the generated statement.
dbName := databases[nextDatabaseName.Add(1)%int64(len(databases))]
return db.exec(t, ctx, strings.Replace(s, "ident", dbName, -1))
})
}

Expand Down