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: Iea7e32eff346313c7a05de6594dc91cb16c3121a

Modified Files

Name
M plugins/tracker/grammar/test_parser.php +1 −1 Go to diff View file
M plugins/tracker/grammar/tql.pegjs +8 −3 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/LesserThanComparison.php +59 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/LesserThanComparisonVisitor.php +164 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFieldsCollectorVisitor.php +17 −6 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForFloat.php +62 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForInteger.php +62 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparisonVisitor.php +165 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilderVisitor.php +21 −4 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 +68 −7 Go to diff View file
M plugins/tracker/tests/Tracker/Report/Query/Advanced/QueryBuilderTest.php +65 −12 Go to diff View file
M src/common/autoload.php +2 −3 Go to diff View file