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

lijibing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 5d3bc2b051f [fix](regression)Add log to investigate 
nereids_p0/stats/partition_key_minmax case failure. (#45121)
5d3bc2b051f is described below

commit 5d3bc2b051ffb134c8ad5054d1fe5ced5aef5527
Author: James <lijib...@selectdb.com>
AuthorDate: Sun Dec 8 09:56:29 2024 +0800

    [fix](regression)Add log to investigate 
nereids_p0/stats/partition_key_minmax case failure. (#45121)
    
    ### What problem does this PR solve?
    Add log to investigate nereids_p0/stats/partition_key_minmax case
    failure.
    
    Issue Number: close #xxx
    
    Related PR: #xxx
    
    Problem Summary:
    
    ### Release note
    
    None
---
 regression-test/suites/nereids_p0/stats/partition_key_minmax.groovy | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/regression-test/suites/nereids_p0/stats/partition_key_minmax.groovy 
b/regression-test/suites/nereids_p0/stats/partition_key_minmax.groovy
index 3a58d1b6f23..e7d733611e7 100644
--- a/regression-test/suites/nereids_p0/stats/partition_key_minmax.groovy
+++ b/regression-test/suites/nereids_p0/stats/partition_key_minmax.groovy
@@ -32,6 +32,8 @@ suite("partition_key_minmax") {
 
         analyze table rangetable with sync;
     """
+    def columnStats = sql """show column cached stats rangetable"""
+    logger.info("rangetable cached stats: " + columnStats)
     explain {
         sql """memo plan
             select * from rangetable where a < 250;
@@ -56,6 +58,9 @@ suite("partition_key_minmax") {
     analyze table listtable with sync;
     """
 
+    columnStats = sql """show column cached stats listtable"""
+    logger.info("listtable cached stats: " + columnStats)
+
     explain {
         sql """
          memo plan select * from listtable where id >=3;


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

Reply via email to