- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for LimitReached (0.05 sec)
-
internal/s3select/sql/statement.go
return nil, err } } // Update count of records output. e.outputCount++ return output, nil } // LimitReached - returns true if the number of records output has // reached the value of the `LIMIT` clause. func (e *SelectStatement) LimitReached() bool { if e.limitValue == -1 { return false } return e.outputCount >= e.limitValue
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 8.9K bytes - Viewed (0)