abhishekrb19 opened a new pull request, #14323: URL: https://github.com/apache/druid/pull/14323
The `EXPLAIN PLAN` output includes a `RESOURCES` column that contains a collection of resources used in the query as a string. Previously the resources would be an unordered collection, where the ordering wasn't deterministic. This change makes them ordered (by name), thereby deterministic by changing from `Set` to a `List` and adding a `sorted` operation to the stream operations. - Added a new unit test to demonstrate the ordering that would change based on different test runs. - Cleaned up some unit tests - Fixed the EXPLAIN PLAN docs stuff This PR has: - [x] been self-reviewed. - [x] been tested in a test Druid cluster. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
