This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from ada72b055f [feature](Nereids): Support any_value/any function. (#15450) add 77fda4f749 [SpillToDisk](block reader and writer)Support spill to disk: implement interfaces for spill block and read block (#15399) No new revisions were added by this update. Summary of changes: be/src/runtime/CMakeLists.txt | 1 + be/src/runtime/block_spill_manager.cpp | 61 +++ .../block_spill_manager.h} | 33 +- be/src/runtime/exec_env.h | 4 + be/src/runtime/exec_env_init.cpp | 2 + be/src/vec/CMakeLists.txt | 2 + be/src/vec/core/block_spill_reader.cpp | 97 +++++ .../block_spill_reader.h} | 34 +- be/src/vec/core/block_spill_writer.cpp | 102 +++++ be/src/vec/core/block_spill_writer.h | 65 +++ be/test/CMakeLists.txt | 1 + be/test/vec/core/block_spill_test.cpp | 448 +++++++++++++++++++++ 12 files changed, 821 insertions(+), 29 deletions(-) create mode 100644 be/src/runtime/block_spill_manager.cpp copy be/src/{service/backend_options.h => runtime/block_spill_manager.h} (58%) create mode 100644 be/src/vec/core/block_spill_reader.cpp copy be/src/vec/{exec/scan/new_jdbc_scan_node.h => core/block_spill_reader.h} (58%) create mode 100644 be/src/vec/core/block_spill_writer.cpp create mode 100644 be/src/vec/core/block_spill_writer.h create mode 100644 be/test/vec/core/block_spill_test.cpp --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org