Skip to content
Open
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
4 changes: 4 additions & 0 deletions pkg/sql/importer/import_stmt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3774,6 +3774,10 @@ func TestUniqueUUID(t *testing.T) {
connDB := tc.ServerConn(0)
sqlDB := sqlutils.MakeSQLRunner(connDB)

// Disable elastic CPU control to avoid timeout — elastic CPU throttling
// can push this test past the 15m timeout.
sqlDB.Exec(t, `SET CLUSTER SETTING bulkio.import.elastic_control.enabled = false`)

dataSize := parallelImporterReaderBatchSize * 100

sqlDB.Exec(t, fmt.Sprintf(`CREATE TABLE data AS SELECT * FROM generate_series(1, %d);`, dataSize))
Expand Down
Loading