This is an automated email from the ASF dual-hosted git repository. w41ter pushed a change to branch auto-pick-47557-branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
discard bf035136ff2 [feat](binlog) Support getting binlogs in batch (#47557) add ba97470d3e8 branch-3.0: [fix](index compaction)Add column unique id check before use #47562 (#47577) add b35867116c1 branch-3.0: [fix](docker) Starting thirdpaty script with only the reserve-ports parameter does not work #47578 (#47590) add 9305725f5ed [branch-3.0](pick) pick #47501 #47535 (#47602) add 5a27ce44de8 branch-3.0: [fix](ut) prefer to use LLVM_PROFDATA from env.sh #47351 (#47386) add 7a4ea1a91a2 branch-3.0: [fix](UT) Fix cloud UT network_util_test and resource_test #47582 (#47641) add 45dda9793c7 branch-3.0: [fix](cloud) fix file cache get_or_set timer overflow #47609 (#47615) add 5e95141bb87 branch-3.0: [enhancement](cloud) file cache evict in advance #47473 (#47614) add a733a56648c [fix](nereids)Add catalog/db/table filter info in SchemaScanNode (#46864) (#47550) add 3759b58543d [fix](cloud-mow)Fix not release delete bitmap lock when checking txn state is visible #47580 (#47652) add da48c9f4226 [fix](test) fix test case for inverted index up down case (#47645) add 746ecd7d18a [fix](exchange)fix exchange sink buffer does not update total_queue_size when EOF. (#47322) add 7ed947eccfd [revert](orc) revert orc predicate pushdown related commits (#47662) add ef5864d3007 branch-3.0: [Fix](load) Reset memtable immediately after insert failure to prevent crash #47610 (#47636) add cb54f5d48e8 [feat](binlog) Support getting binlogs in batch (#47557) 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 (bf035136ff2) \ N -- N -- N refs/heads/auto-pick-47557-branch-3.0 (cb54f5d48e8) 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. No new revisions were added by this update. Summary of changes: be/src/apache-orc | 2 +- be/src/common/config.cpp | 9 + be/src/common/config.h | 8 + .../exec/schema_scanner/schema_tables_scanner.cpp | 3 + be/src/io/cache/block_file_cache.cpp | 148 +++++- be/src/io/cache/block_file_cache.h | 37 +- be/src/olap/compaction.cpp | 5 + be/src/olap/memtable_writer.cpp | 15 +- be/src/olap/parallel_scanner_builder.cpp | 11 +- be/src/olap/parallel_scanner_builder.h | 5 +- be/src/olap/tablet_schema.cpp | 4 + be/src/olap/tablet_schema.h | 1 + be/src/pipeline/exec/exchange_sink_buffer.cpp | 8 + be/src/pipeline/exec/olap_scan_operator.cpp | 119 +++-- be/src/pipeline/exec/olap_scan_operator.h | 5 + be/src/pipeline/exec/operator.h | 2 + be/src/pipeline/local_exchange/local_exchanger.cpp | 4 +- be/src/pipeline/pipeline_task.cpp | 3 + be/src/runtime/exec_env.h | 1 - be/src/vec/exec/format/orc/vorc_reader.cpp | 496 ++++++--------------- be/src/vec/exec/format/orc/vorc_reader.h | 45 +- be/test/exec/test_data/orc_scanner/orders.orc | Bin 1293 -> 0 bytes be/test/io/cache/block_file_cache_test.cpp | 243 +++++++++- be/test/testutil/desc_tbl_builder.cpp | 29 +- be/test/testutil/desc_tbl_builder.h | 17 +- be/test/vec/exec/orc_reader_test.cpp | 161 ------- cloud/script/run_all_tests.sh | 4 +- cloud/test/network_util_test.cpp | 3 + cloud/test/resource_test.cpp | 2 + docker/thirdparties/run-thirdparties-docker.sh | 9 +- .../transaction/CloudGlobalTransactionMgr.java | 59 ++- .../glue/translator/PhysicalPlanTranslator.java | 8 +- .../doris/nereids/jobs/executor/Rewriter.java | 4 +- .../org/apache/doris/nereids/rules/RuleType.java | 1 + .../LogicalSchemaScanToPhysicalSchemaScan.java | 5 +- .../rewrite/PushDownFilterIntoSchemaScan.java | 77 ++++ .../trees/plans/logical/LogicalSchemaScan.java | 72 ++- .../trees/plans/physical/PhysicalSchemaScan.java | 60 ++- .../planner/BackendPartitionedSchemaScanNode.java | 5 +- .../org/apache/doris/planner/SchemaScanNode.java | 6 +- .../apache/doris/planner/SingleNodePlanner.java | 5 +- .../apache/doris/service/FrontendServiceImpl.java | 13 +- gensrc/thrift/FrontendService.thrift | 1 + .../data/external_table_p0/hive/test_hive_orc.out | Bin 92747 -> 90753 bytes .../test_information_schema.out | Bin 0 -> 859 bytes regression-test/pipeline/common/github-utils.sh | 1 + .../external_table_p0/hive/test_hive_orc.groovy | 34 -- .../hive/test_hive_orc_predicate.groovy | 2 +- ...t_cloud_mow_stream_load_with_commit_fail.groovy | 3 + .../test_cloud_mow_stream_load_with_timeout.groovy | 20 + .../test_information_schema.groovy | 69 +++ .../inverted_index.groovy | 9 +- 52 files changed, 1131 insertions(+), 722 deletions(-) delete mode 100644 be/test/exec/test_data/orc_scanner/orders.orc delete mode 100644 be/test/vec/exec/orc_reader_test.cpp create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/PushDownFilterIntoSchemaScan.java create mode 100644 regression-test/data/information_schema_p0/test_information_schema.out create mode 100644 regression-test/suites/information_schema_p0/test_information_schema.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org