ent: export query interceptors (#3157)

This commit is contained in:
Ariel Mashraki
2022-12-19 10:17:10 +02:00
committed by GitHub
parent 3328201ba8
commit f226627d67
493 changed files with 22829 additions and 10766 deletions

View File

@@ -1762,7 +1762,7 @@ func (p *Predicate) Contains(col, substr string) *Predicate {
return p.escapedLike(col, "%", "%", substr)
}
// ContainsFold is a helper predicate that checks substring using the LIKE predicate.
// ContainsFold is a helper predicate that checks substring using the LIKE predicate with case-folding.
func ContainsFold(col, sub string) *Predicate { return P().ContainsFold(col, sub) }
// ContainsFold is a helper predicate that applies the LIKE predicate with case-folding.