gortiz commented on PR #14690: URL: https://github.com/apache/pinot/pull/14690#issuecomment-2569132962
I was correct. MSE and SSE tests were interfering with each other. The cause was the change I made to make default columns mutable, which was incorrect. First MSE was adding the new range indexes and then SSE wanted to add them again. Instead of changing a static reference, which is never a good idea, I'm changing the code so all tests return a new ArrayList for these columns, so each test can modify them independently. Changing the columns is not great, but that is how these features have been implemented and isn't easy to change that. -- 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]
