We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b6f814 commit 9969160Copy full SHA for 9969160
cond_test.go
@@ -33,6 +33,7 @@ func TestCond(t *testing.T) {
33
"$$a IN ($0, $1, $2)": func() string { return newTestCond().In("$a", 1, 2, 3) },
34
"$$a NOT IN ($0, $1, $2)": func() string { return newTestCond().NotIn("$a", 1, 2, 3) },
35
"$$a LIKE $0": func() string { return newTestCond().Like("$a", "%Huan%") },
36
+ "$$a ILIKE $0": func() string { return newTestCond().ILike("$a", "%Huan%") },
37
"$$a NOT LIKE $0": func() string { return newTestCond().NotLike("$a", "%Huan%") },
38
"$$a IS NULL": func() string { return newTestCond().IsNull("$a") },
39
"$$a IS NOT NULL": func() string { return newTestCond().IsNotNull("$a") },
0 commit comments