This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
from 78dd7bb4bc [Fix](Nereids)add nereids load function in read fields of
GlobalFunctionMgr and Database (#23249)
new 8e68472b14 [fix](planner)avg function need support large int param
(#23254)
new 94c390a274 [test](fix) fix test_clickhouse_jdbc_catalog.groovy (#23342)
new 3c65ed284c [fix](multi-catalog)fix broker and tvf params (#23252)
new 8db0cd995f [enhancement](bitmap)support bitmap type for non-key
column in unique table (#23228)
new 0e0d8a3f34 [fix](regression-test) fix unstable case
load_p0/insert/test_insert.groovy (#23326)
new ab3fe0e509 Update load.groovy (#23333)
new 9138a4e8df [Fix](inverted index) fix bug when match condition in hash
join (#23105)
new 03149e14c5 [fix](tools)fix perf tools analyze db (#23370)
new c8e470c456 [fix](csv-reader)fix bug of multi-char delimiter in csv
reader
The 9 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/olap/rowset/segment_v2/segment_writer.cpp | 4 +-
be/src/vec/exec/format/csv/csv_reader.cpp | 69 ++++++-----
.../sql-manual/sql-reference/Data-Types/BITMAP.md | 4 +-
.../sql-manual/sql-reference/Data-Types/BITMAP.md | 17 +--
.../org/apache/doris/analysis/CreateTableStmt.java | 18 +--
.../org/apache/doris/analysis/S3TvfLoadStmt.java | 4 +-
.../java/org/apache/doris/analysis/SlotRef.java | 4 +
.../org/apache/doris/catalog/AggregateType.java | 1 -
.../java/org/apache/doris/catalog/FunctionSet.java | 4 +
.../org/apache/doris/fs/FileSystemFactory.java | 3 +-
.../apache/doris/fs/remote/BrokerFileSystem.java | 2 +
.../glue/translator/ExpressionTranslator.java | 52 ++++++---
.../glue/translator/PhysicalPlanTranslator.java | 21 ++--
.../glue/translator/PlanTranslatorContext.java | 1 +
.../trees/expressions/functions/agg/Avg.java | 2 +
.../planner/external/iceberg/IcebergScanNode.java | 2 +-
.../apache/doris/analysis/CreateTableStmtTest.java | 17 +--
regression-test/data/correctness_p0/test_avg.out | 6 +
.../data_model_p0/unique/test_unique_bitmap.out | 21 ++++
.../tpcds_sf1_index/sql/q100.out} | 8 +-
.../{nereids_p0 => load_p0/insert}/baseall.txt | 0
.../load_p0/stream_load/test_csv_split_line.out | 14 +++
.../load_p0/stream_load/test_csv_split_line1.csv | 1 +
.../load_p0/stream_load/test_csv_split_line2.csv | 4 +
.../load_p0/stream_load/test_csv_split_line3.csv | 4 +
.../suites/correctness_p0/test_avg.groovy | 30 +++++
.../data_model_p0/unique/test_unique_bitmap.groovy | 55 +++++++++
.../jdbc/test_clickhouse_jdbc_catalog.groovy | 2 +-
.../tpcds_sf1_index/ddl/web_site.sql | 2 +-
.../inverted_index_p1/tpcds_sf1_index/sql/q100.sql | 14 +++
regression-test/suites/load_p0/insert/load.groovy | 91 +++++++++++++++
.../suites/load_p0/insert/test_insert.groovy | 8 +-
.../load_p0/stream_load/test_csv_split_line.groovy | 130 +++++++++++++++++++++
regression-test/suites/ssb_sf100_p2/load.groovy | 1 +
tools/clickbench-tools/run-clickbench-queries.sh | 3 +
tools/ssb-tools/bin/run-ssb-flat-queries.sh | 3 +-
tools/ssb-tools/bin/run-ssb-queries.sh | 6 +-
tools/tpch-tools/bin/run-tpch-queries.sh | 15 ++-
38 files changed, 545 insertions(+), 98 deletions(-)
create mode 100644
regression-test/data/data_model_p0/unique/test_unique_bitmap.out
copy regression-test/data/{correctness_p0/test_avg.out =>
inverted_index_p1/tpcds_sf1_index/sql/q100.out} (57%)
copy regression-test/data/{nereids_p0 => load_p0/insert}/baseall.txt (100%)
create mode 100644
regression-test/data/load_p0/stream_load/test_csv_split_line.out
create mode 100644
regression-test/data/load_p0/stream_load/test_csv_split_line1.csv
create mode 100644
regression-test/data/load_p0/stream_load/test_csv_split_line2.csv
create mode 100644
regression-test/data/load_p0/stream_load/test_csv_split_line3.csv
create mode 100644
regression-test/suites/data_model_p0/unique/test_unique_bitmap.groovy
create mode 100644
regression-test/suites/inverted_index_p1/tpcds_sf1_index/sql/q100.sql
create mode 100644 regression-test/suites/load_p0/insert/load.groovy
create mode 100644
regression-test/suites/load_p0/stream_load/test_csv_split_line.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]