Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for evalBetweenNode (0.09 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top