This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit c7297611d36fc9fabbe5f3fbae5503da9e429c48 Author: shuke <37901441+shuke...@users.noreply.github.com> AuthorDate: Sun Sep 17 20:26:21 2023 +0800 [regression-test](fix) fix query_p0/having/having.groovy case bug (#24478) --- regression-test/suites/query_p0/having/having.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/query_p0/having/having.groovy b/regression-test/suites/query_p0/having/having.groovy index 2cb0755d54..e54bc3f9a6 100644 --- a/regression-test/suites/query_p0/having/having.groovy +++ b/regression-test/suites/query_p0/having/having.groovy @@ -21,6 +21,7 @@ suite("having") { sql "set enable_nereids_planner=false;" + sql """DROP TABLE IF EXISTS supplier""" sql """CREATE TABLE `supplier` ( `s_suppkey` int(11) NOT NULL, `s_name` varchar(25) NOT NULL, @@ -46,4 +47,4 @@ suite("having") { from supplier s group by s_nationkey,s_suppkey having s_nationkey=1 or s_suppkey=1;""" -} \ No newline at end of file +} --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org