Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Ioka (0.2 sec)

  1. internal/s3select/sql/value.go

    		return true, nil
    	}
    	return false, errCmpInvalidBoolOperator
    }
    
    func inferTypesForCmp(a *Value, b *Value) error {
    	_, okA := a.ToBytes()
    	_, okB := b.ToBytes()
    	switch {
    	case !okA && !okB:
    		// Both Values already have types
    		return nil
    
    	case okA && okB:
    		// Both Values are untyped so try the types in order:
    		// int, float, bool, string
    
    		// Check for numeric inference
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Feb 25 20:31:19 GMT 2022
    - 20.2K bytes
    - Viewed (0)
Back to top