Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for evalBetweenNode (0.16 sec)

  1. internal/s3select/sql/evaluate.go

    		return e.ConditionRHS.Between.evalBetweenNode(r, opVal, tableAlias)
    
    	case e.ConditionRHS.Like != nil:
    		return e.ConditionRHS.Like.evalLikeNode(r, opVal, tableAlias)
    
    	case e.ConditionRHS.In != nil:
    		return e.ConditionRHS.In.evalInNode(r, opVal, tableAlias)
    
    	default:
    		return nil, errInvalidASTNode
    	}
    }
    
    func (e *Between) evalBetweenNode(r Record, arg *Value, tableAlias string) (*Value, error) {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top