MCPcopy
hub / github.com/dropbox/godropbox / Like

Function Like

database/sqlbuilder/expression.go:392–394  ·  view source on GitHub ↗
(lhs, rhs Expression)

Source from the content-addressed store, hash-verified

390}
391
392func Like(lhs, rhs Expression) BoolExpression {
393 return newBoolExpression(lhs, rhs, []byte(" LIKE "))
394}
395
396func LikeL(lhs Expression, val string) BoolExpression {
397 return Like(lhs, Literal(val))

Callers 1

LikeLFunction · 0.85

Calls 1

newBoolExpressionFunction · 0.85

Tested by

no test coverage detected