Skip to content

Commit 5dfa050

Browse files
feat: add in and notIn operator for string datatype (#77)
* feat: add in operator for string datatype * feat: add not in operator for string datatype
1 parent edecc8f commit 5dfa050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rql/parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
var validNumberOperations = []string{"eq", "neq", "gt", "lt", "gte", "lte"}
12-
var validStringOperations = []string{"eq", "neq", "like"}
12+
var validStringOperations = []string{"eq", "neq", "like", "in", "notIn"}
1313
var validBoolOperations = []string{"eq", "neq"}
1414
var validDatetimeOperations = []string{"eq", "neq", "gt", "lt", "gte", "lte"}
1515

0 commit comments

Comments
 (0)