Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LimitReached (0.28 sec)

  1. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top