Skip to content

Commit

Permalink
workload/schemachange: disable operations which do not currently work
Browse files Browse the repository at this point in the history
These all should be re-enabled but they current have problems.

Release note: None
  • Loading branch information
ajwerner committed Mar 16, 2021
1 parent 661955a commit 4f62dba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/workload/schemachange/operation_generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ var opWeights = []int{
createView: 1,
createEnum: 1,
createSchema: 1,
dropColumn: 1,
dropColumn: 0,
dropColumnDefault: 1,
dropColumnNotNull: 1,
dropColumnStored: 1,
Expand All @@ -204,7 +204,7 @@ var opWeights = []int{
setColumnDefault: 1,
setColumnNotNull: 1,
setColumnType: 1,
insertRow: 1,
insertRow: 0,
validate: 2, // validate twice more often
}

Expand Down

0 comments on commit 4f62dba

Please sign in to comment.