This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 7d7a24e5895 branch-4.1: [fix](regression) Use explicit size call in
nested type plugin #64610 (#64640)
7d7a24e5895 is described below
commit 7d7a24e5895599170e3fcf39ed988e0d5ec0c0d2
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 22 10:24:00 2026 +0800
branch-4.1: [fix](regression) Use explicit size call in nested type plugin
#64610 (#64640)
Cherry-picked from #64610
Co-authored-by: morrySnow <[email protected]>
---
regression-test/plugins/plugins_create_table_nested_type.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/regression-test/plugins/plugins_create_table_nested_type.groovy
b/regression-test/plugins/plugins_create_table_nested_type.groovy
index bb4bdde5818..8c0666503e9 100644
--- a/regression-test/plugins/plugins_create_table_nested_type.groovy
+++ b/regression-test/plugins/plugins_create_table_nested_type.groovy
@@ -133,9 +133,9 @@ Suite.metaClass.get_create_table_with_nested_type { int
depth, String tb_name ->
}
backtrack();
- for (int i = 0; i < res.size; i++) {
+ for (int i = 0; i < res.size(); i++) {
def date_type_str = ""
- for (int j = 0; j < res[i].size; j++) {
+ for (int j = 0; j < res[i].size(); j++) {
date_type_str += res[i][j] + " "
}
logger.info(date_type_str)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]