Lower wraps the given column with the LOWER function. P().EQ(sql.Lower("name"), "a8m")
(ident string)
| 1441 | // |
| 1442 | // P().EQ(sql.Lower("name"), "a8m") |
| 1443 | func Lower(ident string) string { |
| 1444 | f := &Func{} |
| 1445 | f.Lower(ident) |
| 1446 | return f.String() |
| 1447 | } |
| 1448 | |
| 1449 | // Lower wraps the given ident with the LOWER function. |
| 1450 | func (f *Func) Lower(ident string) { |
searching dependent graphs…