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 8fa74d83202dd0d19a645881aff0655e4dce3eee
Author: Dongyang Li <[email protected]>
AuthorDate: Tue Aug 22 10:02:53 2023 +0800

    [fix](case) comment out orthogonal_bitmap_* (#23259)
    
    comment out orthogonal_bitmap_*
---
 .../bitmap_functions/test_bitmap_function.groovy   | 76 +++++++++++-----------
 1 file changed, 38 insertions(+), 38 deletions(-)

diff --git 
a/regression-test/suites/query_p0/sql_functions/bitmap_functions/test_bitmap_function.groovy
 
b/regression-test/suites/query_p0/sql_functions/bitmap_functions/test_bitmap_function.groovy
index 2b3fbb2031..daeb5baf21 100644
--- 
a/regression-test/suites/query_p0/sql_functions/bitmap_functions/test_bitmap_function.groovy
+++ 
b/regression-test/suites/query_p0/sql_functions/bitmap_functions/test_bitmap_function.groovy
@@ -611,13 +611,13 @@ suite("test_bitmap_function") {
     sql """ insert into ${arthogonalBitmapTable} values (1, 1, 
bitmap_from_string("1,11,111")), (2, 2, to_bitmap(2)); """
     sql """ insert into ${arthogonalBitmapTable} values (11, 1, 
bitmap_from_string("1,11")), (12, 2, to_bitmap(2)); """
 
-    qt_sql """ select orthogonal_bitmap_intersect(members, tag_group, 1150000, 
1150001, 390006) from ${arthogonalBitmapTable} where  tag_group in ( 1150000, 
1150001, 390006); """
-    qt_sql """ select orthogonal_bitmap_intersect_count(members, tag_group, 
1150000, 1150001, 390006) from ${arthogonalBitmapTable} where  tag_group in ( 
1150000, 1150001, 390006); """
-    qt_sql """ select orthogonal_bitmap_union_count(members) from 
${arthogonalBitmapTable} where  tag_group in ( 1150000, 1150001, 390006);  """
-    qt_sql_orthogonal_bitmap_intersect_count2 """ select 
orthogonal_bitmap_intersect_count(members, tag_group, 1,2) from 
test_arthogonal_bitmap; """
-    qt_sql_orthogonal_bitmap_intersect_count3_1 """ select 
/*+SET_VAR(parallel_fragment_exec_instance_num=1)*/orthogonal_bitmap_intersect_count(members,
 tag_group, 1,11) from test_arthogonal_bitmap; """
-    qt_sql_orthogonal_bitmap_intersect_count3_2 """ select 
/*+SET_VAR(parallel_fragment_exec_instance_num=2)*/orthogonal_bitmap_intersect_count(members,
 tag_group, 1,11) from test_arthogonal_bitmap; """
-    qt_sql_orthogonal_bitmap_intersect_count4 """ select 
orthogonal_bitmap_intersect_count(members, tag_group, 2,12) from 
test_arthogonal_bitmap; """
+    // qt_sql """ select orthogonal_bitmap_intersect(members, tag_group, 
1150000, 1150001, 390006) from ${arthogonalBitmapTable} where  tag_group in ( 
1150000, 1150001, 390006); """
+    // qt_sql """ select orthogonal_bitmap_intersect_count(members, tag_group, 
1150000, 1150001, 390006) from ${arthogonalBitmapTable} where  tag_group in ( 
1150000, 1150001, 390006); """
+    // qt_sql """ select orthogonal_bitmap_union_count(members) from 
${arthogonalBitmapTable} where  tag_group in ( 1150000, 1150001, 390006);  """
+    // qt_sql_orthogonal_bitmap_intersect_count2 """ select 
orthogonal_bitmap_intersect_count(members, tag_group, 1,2) from 
test_arthogonal_bitmap; """
+    // qt_sql_orthogonal_bitmap_intersect_count3_1 """ select 
/*+SET_VAR(parallel_fragment_exec_instance_num=1)*/orthogonal_bitmap_intersect_count(members,
 tag_group, 1,11) from test_arthogonal_bitmap; """
+    // qt_sql_orthogonal_bitmap_intersect_count3_2 """ select 
/*+SET_VAR(parallel_fragment_exec_instance_num=2)*/orthogonal_bitmap_intersect_count(members,
 tag_group, 1,11) from test_arthogonal_bitmap; """
+    // qt_sql_orthogonal_bitmap_intersect_count4 """ select 
orthogonal_bitmap_intersect_count(members, tag_group, 2,12) from 
test_arthogonal_bitmap; """
     qt_sql_orthogonal_bitmap_union_count2 """ select 
orthogonal_bitmap_union_count( cast(null as bitmap)) from 
test_arthogonal_bitmap; """
     qt_sql_orthogonal_bitmap_union_count3 """ select 
orthogonal_bitmap_union_count(members) from test_arthogonal_bitmap; """
 
@@ -720,12 +720,12 @@ suite("test_bitmap_function") {
     qt_sql_bitmap_intersect_check0 """
         select intersect_count(id_bitmap, type, 1) as count2_bitmap from 
test_bitmap_intersect;
     """
-    qt_sql_bitmap_intersect_check1 """
-        select bitmap_count(orthogonal_bitmap_intersect(id_bitmap, type, 1)) 
as count2_bitmap from test_bitmap_intersect;
-    """
-    qt_sql_bitmap_intersect_check2 """
-        select orthogonal_bitmap_intersect_count(id_bitmap, type, 1) as 
count2_bitmap from test_bitmap_intersect;
-    """
+    // qt_sql_bitmap_intersect_check1 """
+    //     select bitmap_count(orthogonal_bitmap_intersect(id_bitmap, type, 
1)) as count2_bitmap from test_bitmap_intersect;
+    // """
+    // qt_sql_bitmap_intersect_check2 """
+    //     select orthogonal_bitmap_intersect_count(id_bitmap, type, 1) as 
count2_bitmap from test_bitmap_intersect;
+    // """
 
     // test function intersect_count
     // test nereids
@@ -782,11 +782,11 @@ suite("test_bitmap_function") {
     //     select count(distinct if(type=1, id,null)) as count1,
     //         bitmap_count(orthogonal_bitmap_intersect(id_bitmap, type, 1)) 
as count2_bitmap from test_orthog_bitmap_intersect;
     // """
-    sql """ set experimental_enable_pipeline_engine=false; """
-    qt_sql_orthogonal_bitmap_intersect_nereids1 """
-        select count(distinct tag) as count1,
-            bitmap_count(orthogonal_bitmap_intersect(id_bitmap, tag, 0)) as 
count2_bitmap from test_orthog_bitmap_intersect;
-    """
+    // sql """ set experimental_enable_pipeline_engine=false; """
+    // qt_sql_orthogonal_bitmap_intersect_nereids1 """
+    //     select count(distinct tag) as count1,
+    //         bitmap_count(orthogonal_bitmap_intersect(id_bitmap, tag, 0)) as 
count2_bitmap from test_orthog_bitmap_intersect;
+    // """
 
     // test not nereids
     sql """ set experimental_enable_nereids_planner=false; """
@@ -797,26 +797,26 @@ suite("test_bitmap_function") {
     //     select count(distinct if(type=1, id,null)) as count1,
     //         bitmap_count(orthogonal_bitmap_intersect(id_bitmap, type, 1)) 
as count2_bitmap from test_orthog_bitmap_intersect;
     // """
-    sql """ set experimental_enable_pipeline_engine=false; """
-    qt_sql_orthogonal_bitmap_intersect_not_nereids1 """
-        select count(distinct tag) as count1,
-            bitmap_count(orthogonal_bitmap_intersect(id_bitmap, tag, 0)) as 
count2_bitmap from test_orthog_bitmap_intersect;
-    """
+    // sql """ set experimental_enable_pipeline_engine=false; """
+    // qt_sql_orthogonal_bitmap_intersect_not_nereids1 """
+    //     select count(distinct tag) as count1,
+    //         bitmap_count(orthogonal_bitmap_intersect(id_bitmap, tag, 0)) as 
count2_bitmap from test_orthog_bitmap_intersect;
+    // """
 
     // test function orthogonal_bitmap_intersect_count
     // test nereids
     sql """ set experimental_enable_nereids_planner=true; """
     // test pipeline
-    sql """ set experimental_enable_pipeline_engine=true; """
-    qt_sql_orthogonal_bitmap_intersect_count_nereids0 """
-        select count(distinct tag) as count1,
-            orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
-    """
-    sql """ set experimental_enable_pipeline_engine=false; """
-    qt_sql_orthogonal_bitmap_intersect_count_nereids1 """
-        select count(distinct tag) as count1,
-            orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
-    """
+    // sql """ set experimental_enable_pipeline_engine=true; """
+    // qt_sql_orthogonal_bitmap_intersect_count_nereids0 """
+    //     select count(distinct tag) as count1,
+    //         orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
+    // """
+    // sql """ set experimental_enable_pipeline_engine=false; """
+    // qt_sql_orthogonal_bitmap_intersect_count_nereids1 """
+    //     select count(distinct tag) as count1,
+    //         orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
+    // """
 
     // test not nereids
     sql """ set experimental_enable_nereids_planner=false; """
@@ -827,9 +827,9 @@ suite("test_bitmap_function") {
     //     select count(distinct tag) as count1,
     //         orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
     // """
-    sql """ set experimental_enable_pipeline_engine=false; """
-    qt_sql_orthogonal_bitmap_intersect_count_not_nereids1 """
-        select count(distinct tag) as count1,
-            orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
-    """
+    // sql """ set experimental_enable_pipeline_engine=false; """
+    // qt_sql_orthogonal_bitmap_intersect_count_not_nereids1 """
+    //     select count(distinct tag) as count1,
+    //         orthogonal_bitmap_intersect_count(id_bitmap, tag, 0) as 
count2_bitmap from test_orthog_bitmap_intersect;
+    // """
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to