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

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


    from fd51474649 [feature](planner) mark join to support subquery in 
disjunction (#14579) (#15291)
     new b89c88bccb [enhancement] (streamload) allow table in url when do 
two-phase commit (#15246) (#15248)
     new 609f8e9882 [Bug](decimalv3) Fix wrong precision of DECIMALV3 (#15302)
     new e8bb4a3bcc [Bug](Agg) fix crash when encountering not supported agg 
function like last_value(bitmap) (#15257)
     new 5c4a99dff9 [fix](s3 outfile) Add the`use_path_style` parameter for s3 
outfile (#15288)
     new 8e5472502e [fix](Inbitmap) fix in bitmap result error when left expr 
is constant (#15271)
     new 024a848a66  [fix](bitmapfilter) fix core dump caused by bitmap filter 
(#15296)
     new 2e24b3c08a [fix](union)the union node should not pass through children 
in some case (#15286)
     new 8c67998f80 [fix](fe)fix bug of the bucket shuffle join is not 
recognized (#15255)
     new 4036ac38cf [Fix](multi catalog)Fix VFileScanner file not found status 
bug. #15226
     new ddee3b4b85 [fix](jdbc catalog) fix bugs of jdbc catalog and table 
valued function (#15216)
     new 3c6f78e945 [fix](iceberg-v2) fix fe iceberg split, add regression case 
(#15299)
     new 049c1f0980 [feature](multi-catalog) support use catalog.db when client 
connect to the doris server (#15293)
     new d2b6746586 [fix](scan) fix that be may core dump when the predicates 
are all false (#15332)
     new f251343fa4 [fix](multi-catalog) fix and optimize iceberg v2 reader 
(#15274)
     new 9d637531e9 [fix](compile) fix compile error caused by 
`mysql_scan_node.cpp` not being found when enabling `WITH_MYSQL` (#15277)

The 15 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/exec/CMakeLists.txt                         |   7 -
 be/src/exprs/runtime_filter.cpp                    |   8 +-
 be/src/runtime/types.h                             |   5 +
 be/src/service/http_service.cpp                    |   2 +
 be/src/service/internal_service.cpp                |   2 +-
 be/src/vec/CMakeLists.txt                          |   7 +
 .../aggregate_function_window.cpp                  |   4 +-
 be/src/vec/exec/format/csv/csv_reader.cpp          |   4 +-
 be/src/vec/exec/format/csv/csv_reader.h            |   4 +-
 be/src/vec/exec/format/generic_reader.h            |   6 +-
 be/src/vec/exec/format/json/new_json_reader.cpp    |   4 +-
 be/src/vec/exec/format/json/new_json_reader.h      |   4 +-
 be/src/vec/exec/format/orc/vorc_reader.cpp         |   4 +-
 be/src/vec/exec/format/orc/vorc_reader.h           |   4 +-
 be/src/vec/exec/format/parquet/parquet_common.h    |   2 +-
 .../exec/format/parquet/vparquet_column_reader.cpp |  30 +--
 .../exec/format/parquet/vparquet_column_reader.h   |  19 +-
 .../exec/format/parquet/vparquet_group_reader.cpp  | 199 +++++++++-----
 .../exec/format/parquet/vparquet_group_reader.h    |  83 ++++--
 be/src/vec/exec/format/parquet/vparquet_reader.cpp | 243 +++++++----------
 be/src/vec/exec/format/parquet/vparquet_reader.h   |  30 ++-
 be/src/vec/exec/format/table/iceberg_reader.cpp    | 293 ++++++++++-----------
 be/src/vec/exec/format/table/iceberg_reader.h      |  30 +--
 be/src/vec/exec/format/table/table_format_reader.h |   5 +-
 be/src/vec/exec/scan/scanner_scheduler.cpp         |   5 +-
 be/src/vec/exec/scan/vscan_node.cpp                |   5 +-
 be/src/vec/exec/vanalytic_eval_node.cpp            |   4 +
 be/src/vec/exprs/vectorized_agg_fn.cpp             |   2 +-
 be/test/vec/exec/parquet/parquet_thrift_test.cpp   |  12 +-
 .../docker-compose/mysql/init/03-create-table.sql  |   9 +
 .../docker-compose/mysql/init/04-insert.sql        |   5 +
 .../import/import-way/stream-load-manual.md        |  38 +--
 .../Data-Manipulation-Statements/OUTFILE.md        |   1 +
 .../import/import-way/stream-load-manual.md        |  24 +-
 .../Data-Manipulation-Statements/OUTFILE.md        |   1 +
 .../org/apache/doris/analysis/DescribeStmt.java    |   3 +-
 .../org/apache/doris/analysis/OutFileClause.java   |   4 +
 .../org/apache/doris/analysis/StmtRewriter.java    |  45 +++-
 .../java/org/apache/doris/catalog/FunctionSet.java |   2 +-
 .../java/org/apache/doris/catalog/ScalarType.java  |  10 +-
 .../org/apache/doris/external/jdbc/JdbcClient.java |  25 +-
 .../org/apache/doris/httpv2/rest/LoadAction.java   |   9 +
 .../java/org/apache/doris/mysql/MysqlProto.java    |  31 ++-
 .../apache/doris/planner/DistributedPlanner.java   |   2 +-
 .../java/org/apache/doris/planner/PlanNode.java    |  17 ++
 .../org/apache/doris/planner/SetOperationNode.java |   3 +
 .../doris/planner/external/QueryScanProvider.java  |   2 +-
 .../java/org/apache/doris/qe/ConnectProcessor.java |   2 +
 .../ExternalFileTableValuedFunction.java           |   2 +-
 .../doris/tablefunction/S3TableValuedFunction.java |   2 +-
 .../table_valued_function/test_hdfs_tvf.out        |   9 +
 ...jection.out => test_union_subquery_groupby.out} |   0
 ..._constant.out => test_with_false_predicate.out} |   5 +-
 .../decimalv3/test_arithmetic_expressions.out      |  19 ++
 .../jdbc_catalog_p0/test_mysql_jdbc_catalog.out    |   4 +
 .../data/query_p0/join/test_bitmap_filter.out      |  19 ++
 .../table_valued_function/test_hdfs_tvf.groovy     |   9 +
 ...join.groovy => test_bucket_shuffle_join.groovy} |  13 +-
 ...t.groovy => test_union_subquery_groupby.groovy} |  42 ++-
 ...dow.groovy => test_with_false_predicate.groovy} |  41 ++-
 .../decimalv3/test_arithmetic_expressions.groovy}  |  38 ++-
 .../jdbc_catalog_p0/test_mysql_jdbc_catalog.groovy |   7 +-
 .../suites/query_p0/join/test_bitmap_filter.groovy |  12 +-
 .../function/test_not_supported_agg_fn.groovy      |  43 +++
 64 files changed, 938 insertions(+), 587 deletions(-)
 copy regression-test/data/correctness_p0/{test_join_with_projection.out => 
test_union_subquery_groupby.out} (100%)
 copy regression-test/data/correctness_p0/{test_group_by_constant.out => 
test_with_false_predicate.out} (83%)
 create mode 100644 
regression-test/data/datatype_p0/decimalv3/test_arithmetic_expressions.out
 copy regression-test/suites/correctness_p0/{test_colocate_join.groovy => 
test_bucket_shuffle_join.groovy} (87%)
 copy regression-test/suites/correctness_p0/{test_implict_cast.groovy => 
test_union_subquery_groupby.groovy} (58%)
 copy regression-test/suites/correctness_p0/{test_no_grouping_window.groovy => 
test_with_false_predicate.groovy} (55%)
 copy 
regression-test/suites/{bloom_filter_p0/test_bloom_filter_is_not_null.groovy => 
datatype_p0/decimalv3/test_arithmetic_expressions.groovy} (54%)
 create mode 100644 
regression-test/suites/tpch_sf1_p1/function/test_not_supported_agg_fn.groovy


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

Reply via email to