mirror of
https://github.com/jeremyd/ergo.git
synced 2026-06-11 23:33:31 -07:00
LIKE quoting should convert to string for SQL
This commit is contained in:
@@ -37,8 +37,8 @@ func ExpandUserHost(userhost Name) (expanded Name) {
|
||||
return
|
||||
}
|
||||
|
||||
func QuoteLike(userhost Name) Name {
|
||||
return Name(likeQuoter.Replace(userhost.String()))
|
||||
func QuoteLike(userhost Name) string {
|
||||
return likeQuoter.Replace(userhost.String())
|
||||
}
|
||||
|
||||
type ClientLookupSet struct {
|
||||
|
||||
Reference in New Issue
Block a user