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

   ## Summary
   
   Pick master PR #62455 to branch-4.1 for `http_rest_api.post.test_query_stmt`.
   
   The branch-4.1 case still uses Groovy property access:
   
   ```groovy
   obj.data.data.size
   ```
   
   Under the current regression runtime this can be interpreted as GPath 
property access over the nested list and fail with:
   
   ```text
   groovy.lang.MissingPropertyException: No such property: size for class: 
java.lang.Integer
   ```
   
   Use the explicit method call instead:
   
   ```groovy
   obj.data.data.size()
   ```
   
   ## Testing
   
   - [x] Cherry-picked master commit `50cbb9f82a1` (`apache/doris#62455`) onto 
branch-4.1.
   - [x] Verified the branch diff only changes 
`regression-test/suites/http_rest_api/post/test_query_stmt.groovy`.
   - [ ] `run buildall`
   


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