924060929 commented on PR #11374:
URL: https://github.com/apache/doris/pull/11374#issuecomment-1200678098
good job, you can add some regression test suite like this?
```groovy
suite('test_aggregate_function') {
// use regression_test_ssb_sf1 database, you can compute ssb database by
suite directory like 'regression-test/suites/ssb_sf1/nereids/q1.1.groovy'
sql "use ${realDb}"
sql 'set enable_nereids_planner=true'
// nereids need vectorized
sql 'set enable_vectorized_engine=true'
sql 'set exec_mem_limit=2147483648*2'
qt 'select count(*), count(l.*), count(1), count(lo_orderkey),
count(l.lo_orderkey), min(lo_revenue), min(l.lo_revenue), avg(lo_revenue),
avg(l.lo_revenue) from lineorder as l'
}
```
--
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]