This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 1dcb99519dbdda4e9ed6489311931f482f72cb0e Author: Kaijie Chen <c...@apache.org> AuthorDate: Wed Mar 6 11:35:53 2024 +0800 [fix](move-memtable) use tuple desc from schema param for delta writer (#31747) --- be/src/vec/sink/writer/vtablet_writer_v2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/writer/vtablet_writer_v2.cpp b/be/src/vec/sink/writer/vtablet_writer_v2.cpp index 4cbca9cd8af..6499ae76d3c 100644 --- a/be/src/vec/sink/writer/vtablet_writer_v2.cpp +++ b/be/src/vec/sink/writer/vtablet_writer_v2.cpp @@ -427,7 +427,7 @@ Status VTabletWriterV2::_write_memtable(std::shared_ptr<vectorized::Block> block .index_id = rows.index_id, .partition_id = rows.partition_id, .load_id = _load_id, - .tuple_desc = _output_tuple_desc, + .tuple_desc = _schema->tuple_desc(), .table_schema_param = _schema, .is_high_priority = _is_high_priority, .write_file_cache = _write_file_cache, --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org