stable

Clone or download

Read-only

feat: Add select builder for always there fields

Part of story #38648 Choose my own columns based on semantics and always there fields USer can now select on always there fields with TQL. But nothing changes in API as the return format is not done yet *Testing:* The feature flag `feature_flag_enable_tql_select` need to be set to 1 In your XTS widget write a query selecting always there fields @submitted_on, @last_update_date, @submitted_by, @last_update_by and @id. rest_api_log should display a json with columns: - @submitted_on -> a timestamp - @last_update_date -> a timestamp - @submitted_by -> a user id - @last_update_by -> a user id - @id -> an artifact id Change-Id: I96e458fd5a73ded42ad1f6a0e5b3dc5d045066ff

Modified Files

Name
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/SelectBuilder/Metadata/MetadataSelectFromBuilder.php +10 −10 Go to diff View file
A plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Select/ArtifactIdSelectBuilderTest.php +145 −0 Go to diff View file
A plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Select/LastUpdateBySelectBuilderTest.php +150 −0 Go to diff View file
A plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Select/LastUpdateDateSelectBuilderTest.php +148 −0 Go to diff View file
A plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Select/SubmittedBySelectBuilderTest.php +150 −0 Go to diff View file
A plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Select/SubmittedOnSelectBuilderTest.php +148 −0 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/Query/Advanced/SelectBuilder/Metadata/MetadataSelectFromBuilderTest.php +30 −8 Go to diff View file