stable

Clone or download

Read-only

Introduce > (only numeric)

This is a part of story #8859 TQL search on date & numeric fields To test: In /tuleap npm run build. You can now use the operator > only for numerics. Change-Id: I0330e0b0609423f2d561e5678fc4d2a6231b19ff

Modified Files

Name
M plugins/tracker/grammar/test_parser.php +8 −1 Go to diff View file
M plugins/tracker/grammar/tql.pegjs +6 −1 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/GreaterThanComparison.php +59 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/GreaterThanComparisonVisitor.php +164 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFieldsCollectorVisitor.php +18 −5 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForFloat.php +62 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForInteger.php +62 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparisonVisitor.php +165 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilderVisitor.php +22 −5 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/SizeValidatorVisitor.php +6 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Tracker_Report.class.php +4 −2 Go to diff View file
M plugins/tracker/include/autoload.php +7 −2 Go to diff View file
M plugins/tracker/tests/Tracker/Report/Query/Advanced/InvalidFieldsCollectorVisitorTest.php +28 −1 Go to diff View file
M plugins/tracker/tests/Tracker/Report/Query/Advanced/QueryBuilderTest.php +22 −1 Go to diff View file