From 16689d77e5dd1a1f145a7f9aa400a83c37c0ba39 Mon Sep 17 00:00:00 2001 From: Nathan Villaescusa Date: Mon, 18 Mar 2024 15:27:30 -0700 Subject: [PATCH] = --- lib/rdbms/scan/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdbms/scan/scan.go b/lib/rdbms/scan/scan.go index 97e47d47..f349743f 100644 --- a/lib/rdbms/scan/scan.go +++ b/lib/rdbms/scan/scan.go @@ -107,7 +107,7 @@ func (s *Scanner) Next() ([]map[string]any, error) { if !wasFirstBatch && !startingValuesChanged { // Detect situations where the scanner is stuck in a loop. - // The second batch will use a > comparision instead of a > comparision for the lower bound. + // The second batch will use a > comparision instead of a >= comparision for the lower bound. return nil, fmt.Errorf("primarky key start values did not change, scanner is stuck in a loop") } }