not applying range if nil

This commit is contained in:
Shlomi Noach 2016-12-29 10:26:56 +02:00
parent 24f5c6da62
commit 7bdfd1bff5

View File

@ -283,8 +283,12 @@ func (this *MigrationContext) LoadJSON(jsonString string) error {
func (this *MigrationContext) ApplyResurrectedContext(other *MigrationContext) {
// this.MigrationRangeMinValues = other.MigrationRangeMinValues
// this.MigrationRangeMaxValues = other.MigrationRangeMaxValues
if other.MigrationIterationRangeMinValues != nil {
this.MigrationIterationRangeMinValues = other.MigrationIterationRangeMinValues
}
if other.MigrationIterationRangeMaxValues != nil {
this.MigrationIterationRangeMaxValues = other.MigrationIterationRangeMaxValues
}
this.RowsEstimate = other.RowsEstimate
this.RowsDeltaEstimate = other.RowsDeltaEstimate