We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a00abf + bfcedef commit 59967d5Copy full SHA for 59967d5
build.sh
@@ -2,7 +2,7 @@
2
#
3
4
5
-RELEASE_VERSION="1.0.13"
+RELEASE_VERSION="1.0.14"
6
7
function build {
8
osname=$1
go/logic/migrator.go
@@ -1151,6 +1151,10 @@ func (this *Migrator) iterateChunks() error {
1151
return nil
1152
}
1153
copyRowsFunc := func() error {
1154
+ if atomic.LoadInt64(&this.rowCopyCompleteFlag) == 1 {
1155
+ // Done
1156
+ return nil
1157
+ }
1158
hasFurtherRange, err := this.applier.CalculateNextIterationRangeEndValues()
1159
if err != nil {
1160
return terminateRowIteration(err)
0 commit comments