type github.com/Masterminds/squirrel.Like

9 uses

	github.com/Masterminds/squirrel (current package)
		expr.go#L225: type Like map[string]interface{}
		expr.go#L227: func (lk Like) toSql(opr string) (sql string, args []interface{}, err error) {
		expr.go#L257: func (lk Like) ToSql() (sql string, args []interface{}, err error) {
		expr.go#L264: type NotLike Like
		expr.go#L267: 	return Like(nlk).toSql("NOT LIKE")
		expr.go#L273: type ILike Like
		expr.go#L276: 	return Like(ilk).toSql("ILIKE")
		expr.go#L282: type NotILike Like
		expr.go#L285: 	return Like(nilk).toSql("NOT ILIKE")