Skip to content
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
4 changes: 2 additions & 2 deletions pkg/sql/schema_changer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ CREATE TABLE t.test (k INT PRIMARY KEY, v INT);
}

// Bulk insert.
const maxValue = 5000
const maxValue = 2000
if err := bulkInsertIntoTable(sqlDB, maxValue); err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -1437,7 +1437,7 @@ CREATE TABLE t.test (k INT PRIMARY KEY, v INT);
}

// Bulk insert.
maxValue := 5000
maxValue := 2000
if err := bulkInsertIntoTable(sqlDB, maxValue); err != nil {
t.Fatal(err)
}
Expand Down