morrySnow opened a new pull request, #64610:
URL: https://github.com/apache/doris/pull/64610

   ### What problem does this PR solve?
   
   Issue Number: None
   
   Related PR: None
   
   Problem Summary: 
regression-test/plugins/plugins_create_table_nested_type.groovy used Groovy 
list property access such as res.size and res[i].size while iterating generated 
nested type combinations. For nested lists, Groovy can treat List.property as 
GPath property access over the elements instead of a deterministic List.size() 
call. When the property lookup reaches Integer elements, evaluating size fails 
with MissingPropertyException. This patch uses explicit size() calls so the 
helper iterates list sizes directly and remains stable when all regression 
cases run in parallel.
   
   ### Release note
   
   None
   
   ### Check List (For Author)
   
   - Test: Manual test
       - git diff --check -- 
regression-test/plugins/plugins_create_table_nested_type.groovy
       - groovy -e snippets reproducing the old MissingPropertyException and 
validating the new size() iteration
   - Behavior changed: No
   - Does this need documentation: No


-- 
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]

Reply via email to