Add qb.Like to query keys

This commit is contained in:
Maxim Karelov
2019-01-08 04:19:57 +04:00
committed by Michal Matczuk
parent 5007a41bf5
commit 6100d3b4c2
2 changed files with 17 additions and 0 deletions

View File

@@ -58,6 +58,11 @@ func TestCmp(t *testing.T) {
S: "cntKey CONTAINS KEY ?",
N: []string{"cntKey"},
},
{
C: Like("like"),
S: "like LIKE ?",
N: []string{"like"},
},
// Custom bind names
{