bobhan1 commented on PR #17541:
URL: https://github.com/apache/doris/pull/17541#issuecomment-1459699897
I run the regression test locally and it failed at an irrelevant test suit:
```
2023-03-08 16:04:13.763 INFO [main] (RegressionTest.groovy:277) - Failure
suites:
/home/baohan/projects/doris/regression-test/suites/query_p0/sql_functions/array_functions/sql/q03.sql:
group=default,p0, name=q03
```
`/doris/regression-test/suites/query_p0/sql_functions/array_functions/sql/q03.sql`:
```
DROP TABLE IF EXISTS array_insert_select_test;
CREATE TABLE IF NOT EXISTS array_insert_select_test (id int, c_array
array<int(11)>) ENGINE = Olap DUPLICATE KEY(id) DISTRIBUTED BY HASH(id) BUCKETS
1 PROPERTIES('replication_num' = '1');
insert into array_insert_select_test select k1, collect_list(k3) from
test_query_db.test group by k1;
select c_array from array_insert_select_test;
```
Should I do the rebase?
--
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]