This is an automated email from the ASF dual-hosted git repository.
liaoxin pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new d5c8b9a7cfa [test](move memtable) fix move memtable injection case
fail (#42639) (#42671)
d5c8b9a7cfa is described below
commit d5c8b9a7cfa9508edff7ba6183d898cd450ca0bf
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Nov 4 23:02:31 2024 +0800
[test](move memtable) fix move memtable injection case fail (#42639)
(#42671)
PR Body: Fix move memtable injection case fail.
Cherry-picked from #42639
Co-authored-by: hui lai <[email protected]>
Co-authored-by: Xin Liao <[email protected]>
---
.../suites/fault_injection_p0/test_writer_v2_fault_injection.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/regression-test/suites/fault_injection_p0/test_writer_v2_fault_injection.groovy
b/regression-test/suites/fault_injection_p0/test_writer_v2_fault_injection.groovy
index 69c5b8ac28f..f05a084035c 100644
---
a/regression-test/suites/fault_injection_p0/test_writer_v2_fault_injection.groovy
+++
b/regression-test/suites/fault_injection_p0/test_writer_v2_fault_injection.groovy
@@ -86,15 +86,15 @@ suite("test_writer_v2_fault_injection", "nonConcurrent") {
// VTabletWriterV2 _vec_output_expr_ctxs not equal _output_tuple_slot
load_with_injection("VTabletWriterV2._init._vec_output_expr_ctxs_not_equal_output_tuple_slot",
"should be equal to output_expr_num")
// VTabletWriterV2 node_info is null
-
load_with_injection("VTabletWriterV2._open_streams_to_backend.node_info_null",
"Unknown node")
+
load_with_injection("VTabletWriterV2._open_streams_to_backend.node_info_null",
"failed to open streams to any BE")
// VTabletWriterV2 do not get tablet schema on open_streams
load_with_injection("VTabletWriterV2._open_streams_to_backend.no_schema_when_open_streams",
"success")
// VTabletWriterV2 tablet_location is null
load_with_injection("VTabletWriterV2._build_tablet_node_mapping.tablet_location_null",
"unknown tablet location")
// VTabletWriterV2 location is null
- load_with_injection("VTabletWriterV2._select_streams.location_null",
"failed to open DeltaWriter for tablet")
+ load_with_injection("VTabletWriterV2._select_streams.location_null",
"failed to open DeltaWriter")
// VTabletWriterV2 index not found
- load_with_injection("VTabletWriterV2._write_memtable.index_not_found",
"failed to open DeltaWriter for tablet")
+ load_with_injection("VTabletWriterV2._write_memtable.index_not_found",
"failed to open DeltaWriter")
// VTabletWriterV2 cancel
load_with_injection("VTabletWriterV2.close.cancel", "load cancel")
// VTabletWriterV2 load timeout before close_wait
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]