This is an automated email from the ASF dual-hosted git repository.

morrysnow pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 13386a4a23a [fix](test) update case result of 
test_multi_range_partition (#28767)
13386a4a23a is described below

commit 13386a4a23a82b8c6ab8a7579e6f505fc6420813
Author: morrySnow <101034200+morrys...@users.noreply.github.com>
AuthorDate: Thu Dec 21 12:25:21 2023 +0800

    [fix](test) update case result of test_multi_range_partition (#28767)
---
 .../partition_prune/test_multi_range_partition.groovy             | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/regression-test/suites/nereids_rules_p0/partition_prune/test_multi_range_partition.groovy
 
b/regression-test/suites/nereids_rules_p0/partition_prune/test_multi_range_partition.groovy
index 49570682ea2..1e65e73a376 100644
--- 
a/regression-test/suites/nereids_rules_p0/partition_prune/test_multi_range_partition.groovy
+++ 
b/regression-test/suites/nereids_rules_p0/partition_prune/test_multi_range_partition.groovy
@@ -169,12 +169,12 @@ suite("test_multi_range_partition") {
 
     explain {
         sql "select * from pt where k1=7 and k2 in (null);"
-        contains "VEMPTYSET"
+        contains "partitions=0/3"
     }
 
     explain {
         sql "select * from pt where k1=7 and k2 not in (null);"
-        contains "VEMPTYSET"
+        contains "partitions=0/3"
     }
     
     explain {
@@ -189,13 +189,13 @@ suite("test_multi_range_partition") {
 
     explain {
         sql "select * from pt where k2 in (null);"
-        contains "VEMPTYSET"
+        contains "partitions=0/3"
     }
 
     // p1/p2/p3 NOT pruned
     explain {
         sql "select * from pt where k2 not in (null)"
-        contains "VEMPTYSET"
+        contains "partitions=0/3"
     }
 
     explain {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to