diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2021-12-14 10:27:23 +0000 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2021-12-14 10:27:23 +0000 |
| commit | b1f3760dc2f452c3dba7883a538fd14d62a581e9 (patch) | |
| tree | 2266c925aaf71562825dd50d75600a2be691f9f2 /doc | |
| parent | 242d419f1b31755d1d1b3d1a1fd0e7bf61f7768e (diff) | |
Refactor makeWhereConditions
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/querylanguage.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/querylanguage.md b/doc/querylanguage.md index a603bd9..725b635 100644 --- a/doc/querylanguage.md +++ b/doc/querylanguage.md @@ -48,7 +48,7 @@ CONDITION := ARG1 OPERATOR ARG2 ARG := FIELD|FLOAT|STRING OPERATOR := FLOATOPERATOR|STRINGOPERATOR FLOATOPERATOR := One of: == != < <= > >= -STRINGOPERATOR := eq|ne|contains|lacks +STRINGOPERATOR := eq|ne|contains|ncontains|lacks|hasprefix|nhasprefix|hassuffix|nhassuffix ORDERFIELD := FIELD|AGGREGATION(FIELD) SET := VARIABLE = FLOAT|STRING|FIELD|FUNCTION(FIELD) LOGFORMAT := default|generic|generickv|... @@ -58,6 +58,6 @@ FUNCTION := md5sum|maskdigits *Notes:* -* `lacks` is the inverse of `contains` +* `lacks` is an alias for `ncontains` (not contains) * `rorder` stands for reverse order and is the inverse of `order` * Available fields (variables and barewords) vary from the log format used. Check out the [log format](./logformats.md) documentation for more information. |
