somandal commented on PR #11577:
URL: https://github.com/apache/pinot/pull/11577#issuecomment-1725840184

   > Out of the scope of this PR, can you share how you usually generate the 
expected result for the query plan test? We have added so many hardcoded plan 
tests, and whenever we need to add a feature that changes the query plan it is 
extremely painful because we need to modify thousands of lines of test. #11418 
is an example where the actual change might be 20 lines but almost 2000 lines 
of test change. We need to either modify the test to only test the part 
related, or provide a way to regenerate the expected results automatically
   
   I usually let the test run and look at the difference in the plans and 
verify whether the planner side makes sense. At least during development of 
planner side code I've found this very useful to catch bugs or find 
opportunities for improvements. Unfortunately I agree that this is a very 
tedious process to maintain this long list of plans and keep modifying them for 
any planner side changes. I don't know of a good way to generate these 
automatically though (unlike runtime where for most queries H2 can be used). 
Would it be helpful to reduce duplication in the plans by removing some of the 
unnecessary ones (e.g. in window functions initially we had tests for single 
window functions and corresponding tests using multiple window functions - this 
was good for the initial development to ensure both work but may not be so 
useful now)?


-- 
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: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to