This is an automated email from the ASF dual-hosted git repository. lichaoyong pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.
from ad7270b [Spark load][Fe 1/5] Add spark etl job config (#3712) add 70aa9d6 [Memory Engine] Add MemTabletScan (#3734) No new revisions were added by this update. Summary of changes: be/src/olap/base_tablet.cpp | 29 ++-- be/src/olap/memory/CMakeLists.txt | 2 + be/src/olap/memory/column_block.cpp | 1 + be/src/olap/memory/column_block.h | 4 + be/src/olap/memory/column_reader.h | 13 +- be/src/olap/memory/mem_sub_tablet.cpp | 6 +- be/src/olap/memory/mem_tablet.cpp | 34 +++- be/src/olap/memory/mem_tablet.h | 12 +- be/src/olap/memory/mem_tablet_scan.cpp | 59 +++++++ be/src/olap/memory/mem_tablet_scan.h | 82 +++++++++ be/src/olap/memory/partial_row_batch.cpp | 4 +- be/src/olap/memory/partial_row_batch.h | 4 +- .../memory/row_block.cpp} | 11 +- be/src/olap/memory/{common.h => row_block.h} | 33 ++-- be/src/olap/memory/schema.h | 2 + be/src/olap/memory/typed_column_writer.h | 2 +- be/src/olap/memory/write_txn.h | 2 + be/test/olap/CMakeLists.txt | 1 + be/test/olap/memory/mem_tablet_test.cpp | 192 +++++++++++++++++++++ be/test/olap/memory/partial_row_batch_test.cpp | 2 +- 20 files changed, 434 insertions(+), 61 deletions(-) create mode 100644 be/src/olap/memory/mem_tablet_scan.cpp create mode 100644 be/src/olap/memory/mem_tablet_scan.h copy be/src/{util/string_parser.cpp => olap/memory/row_block.cpp} (82%) copy be/src/olap/memory/{common.h => row_block.h} (65%) create mode 100644 be/test/olap/memory/mem_tablet_test.cpp --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org