From 4a654c57e7bb3de8dbccc7be30420f59e9ac383b Mon Sep 17 00:00:00 2001 From: Nathan Villaescusa Date: Mon, 18 Mar 2024 15:28:01 -0700 Subject: [PATCH] Comment --- 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 f349743f..ddbbcc67 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. + // Typically 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") } }