Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for evalLikeNode (0.1 sec)

  1. internal/s3select/sql/evaluate.go

    		return FromBool(b), err
    
    	case e.ConditionRHS.Between != nil:
    		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
    	}
    }
    
    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