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 eef469141280107074eea2c47607a3a7a3acfbde Author: shuke <[email protected]> AuthorDate: Fri Sep 22 21:21:34 2023 +0800 [test](fix) fix case bug for lateral_view.groovy (#24779) --- regression-test/suites/nereids_syntax_p0/lateral_view.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/nereids_syntax_p0/lateral_view.groovy b/regression-test/suites/nereids_syntax_p0/lateral_view.groovy index 5ec7bcba92b..f8a3ab42aa8 100644 --- a/regression-test/suites/nereids_syntax_p0/lateral_view.groovy +++ b/regression-test/suites/nereids_syntax_p0/lateral_view.groovy @@ -83,7 +83,8 @@ suite("nereids_lateral_view") { ) example1 lateral view explode_bitmap(bitmap_from_string("1,2,3,4")) tmp1 as e1 where hour=e1 order by hour; """ - sql """ + sql """ DROP TABLE IF EXISTS test_explode_bitmap""" + sql """ CREATE TABLE `test_explode_bitmap` ( `dt` int(11) NULL COMMENT "", `page` varchar(10) NULL COMMENT "", --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
