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") } }