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 def19b5 commit 1d8359cCopy full SHA for 1d8359c
tests/kuery/test_parser.py
@@ -107,6 +107,8 @@ def test_optimization(self):
107
def test_blank_space(self):
108
with self.assertRaises(kql.KqlParseError):
109
kql.lark_parse('"Test-ServiceDaclPermission" or"Update-ExeFunctions"')
110
+ kql.lark_parse('"Test-ServiceDaclPermission"and "Update-ExeFunctions"')
111
kql.lark_parse('"Test-ServiceDaclPermission" or "Update-ExeFunctions"')
112
kql.lark_parse('"Test-ServiceDaclPermission" \nor "Update-ExeFunctions"')
113
kql.lark_parse('"Test-ServiceDaclPermission" or\n "Update-ExeFunctions"')
114
+ kql.lark_parse('"Test-ServiceDaclPermissionOr" or\n "Update-ExeAndFunctions"')
0 commit comments