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

morningman pushed a change to branch branch-1.2-unstable
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard b2308a90ca [temp](statistics) disable statistic tables
    omit 79688a54d6 [bug](jsonb) fix be core at insert invalid json to JSONB 
column (#14686)
    omit f3cf83a933 (fix)[test] add some logs (#14695)
    omit 3ca3af2234 [improvement](planner)sort show catalogs result by name 
(#14684)
    omit 3ff409551c [enhencement](netty) bind netty's default logger when 
launching fe (#14675)
    omit 486a77fec0 [fix](tcmalloc) use low_watermark instead of hard_mem_limit 
(#14660)
    omit 9272680d00 [feature](multi-catalog) support Jdbc catalog (#14527)
    omit 82f3980774 [feature](Nereids) estimation without column statistics 
(#14526)
     new 05b875f521 [feature](multi-catalog) support Jdbc catalog (#14527)
     new 4924ef3f59 [fix](tcmalloc) use low_watermark instead of hard_mem_limit 
(#14660)
     new ff86d6783e [enhencement](netty) bind netty's default logger when 
launching fe (#14675)
     new cd1fffa92f [improvement](planner)sort show catalogs result by name 
(#14684)
     new 45bd4f7b1c (fix)[test] add some logs (#14695)
     new e2424ff805 [bug](jsonb) fix be core at insert invalid json to JSONB 
column (#14686)
     new cbe104f4d1 [temp](statistics) disable statistic tables
     new 96613e2c73 [fix](join) runtime filter shared from other instance  
wasn't be published (#14717)
     new 5033755fd3 [improvement](multi-catalog) return root cause of exception 
(#14708)
     new 6038918000 [Docs](memory) fix document directory and fix memtracker 
accuracy bug #14710

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b2308a90ca)
            \
             N -- N -- N   refs/heads/branch-1.2-unstable (6038918000)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 be/src/runtime/memory/mem_tracker_limiter.cpp      |   1 +
 be/src/vec/exec/join/vhash_join_node.cpp           |   6 +-
 .../main/java/org/apache/doris/catalog/Table.java  |  18 --
 .../java/org/apache/doris/common/util/Util.java    |  10 +
 .../doris/datasource/ExternalSchemaCache.java      |   4 +-
 .../apache/doris/nereids/cost/CostCalculator.java  |  10 +-
 .../apache/doris/nereids/memo/GroupExpression.java |  19 +-
 .../java/org/apache/doris/nereids/memo/Memo.java   |  15 +-
 .../processor/post/RuntimeFilterPruner.java        |  12 +-
 .../doris/nereids/stats/ExpressionEstimation.java  |  14 +-
 .../doris/nereids/stats/FilterEstimation.java      | 169 +++++++----
 .../nereids/stats/FilterSelectivityCalculator.java | 112 +++++++
 .../apache/doris/nereids/stats/JoinEstimation.java | 325 ++++++++++++++++++++-
 .../doris/nereids/stats/StatsCalculator.java       |  91 +++---
 ...StatsCalculator.java => StatsCalculatorV2.java} |  89 +++---
 .../trees/expressions/functions/table/Numbers.java |   2 +-
 .../doris/planner/external/HiveScanProvider.java   |   5 +-
 .../java/org/apache/doris/qe/SessionVariable.java  |  13 +
 .../apache/doris/statistics/ColumnStatistic.java   |  25 +-
 .../doris/statistics/ColumnStatisticBuilder.java   |  21 +-
 .../doris/statistics/OlapScanStatsDerive.java      |   6 +-
 .../apache/doris/statistics/StatisticsCache.java   |   1 -
 .../apache/doris/statistics/StatsDeriveResult.java |  24 +-
 .../doris/nereids/stats/FilterEstimationTest.java  | 170 ++---------
 .../doris/nereids/stats/StatsCalculatorTest.java   |  71 +----
 .../doris/nereids/util/HyperGraphBuilder.java      |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q1.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q10.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q11.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q12.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q13.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q14.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q15.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q16.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q17.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q18.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q19.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q2.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q20.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q21.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q22.groovy |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q3.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q4.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q5.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q6.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q7.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q8.groovy  |   2 +-
 .../datev2/tpch_sf1_p1/tpch_sf1/nereids/q9.groovy  |   2 +-
 .../suites/tpch_sf1_p1/nereids/q1.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q10.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q11.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q12.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q13.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q14.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q15.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q16.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q17.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q18.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q19.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q2.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q20.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q21.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q22.groovy          |   2 +-
 .../suites/tpch_sf1_p1/nereids/q3.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q4.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q5.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q6.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q7.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q8.groovy           |   2 +-
 .../suites/tpch_sf1_p1/nereids/q9.groovy           |   2 +-
 70 files changed, 785 insertions(+), 538 deletions(-)
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/nereids/stats/FilterSelectivityCalculator.java
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/stats/{StatsCalculator.java 
=> StatsCalculatorV2.java} (85%)


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

Reply via email to