Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for row (0.38 sec)

  1. internal/s3select/sql/statement.go

    func (e *SelectStatement) Eval(input, output Record) (Record, error) {
    	ok, err := e.isPassingWhereClause(input)
    	if err != nil || !ok {
    		// Either error or row did not pass where clause
    		return nil, err
    	}
    
    	if e.selectAST.Expression.All {
    		// Return the input record for `SELECT * FROM
    		// .. WHERE ..`
    
    		// Update count of records output.
    		e.outputCount++
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jan 09 17:19:11 GMT 2024
    - 8.9K bytes
    - Viewed (0)
Back to top