Skip to content
Snippets Groups Projects
Commit c664f05e authored by Guido Trotter's avatar Guido Trotter
Browse files

Add query2 numeric comparison operators


These were recently added to the python version.

Signed-off-by: default avatarGuido Trotter <ultrotter@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent ac13f473
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,10 @@ data Filter
| NotFilter Filter -- ^ ! <expression>
| TrueFilter FilterField -- ^ ? <field>
| EqualFilter FilterField FilterValue -- ^ (=|!=) <field> <value>
| LessThanFilter FilterField FilterValue -- ^ < <field> <value>
| GreaterThanFilter FilterField FilterValue -- ^ > <field> <value>
| LEThanFilter FilterField FilterValue -- ^ <= <field> <value>
| GEThanFilter FilterField FilterValue -- ^ >= <field> <value>
| RegexpFilter FilterField FilterRegexp -- ^ =~ <field> <regexp>
| ContainsFilter FilterField FilterValue -- ^ =[] <list-field> <value>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment