From fe9344b633ce4ad12b75278c9ee4b2d37ae8a322 Mon Sep 17 00:00:00 2001 From: Caleb Gardner Date: Sun, 10 Jan 2021 04:25:09 -0600 Subject: [PATCH] Fixed issue with not all data being extracted with ExtractTo --- datareader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datareader.go b/datareader.go index 71402e9..5b31f5c 100644 --- a/datareader.go +++ b/datareader.go @@ -239,9 +239,9 @@ mainLoop: if err != nil { return totalWrite, err } + curIndex++ } else { backlog = append(backlog, cache) } - curIndex++ } }