feat/bulk-support-flow-batch:

## Update `handle_mark_window_dirty` Method in `flownode_impl.rs`

 - Replaced `unimplemented!()` with `unreachable!()` in the `handle_mark_window_dirty` method for both `FlowDualEngine` and `StreamingEngine` implementations in `flownode_impl.rs`.

Signed-off-by: Lei, HUANG <mrsatangel@gmail.com>
This commit is contained in:
Lei, HUANG
2025-06-11 08:09:26 +00:00
parent 77f20ede7a
commit 7fc74e2928

View File

@@ -835,8 +835,7 @@ impl common_meta::node_manager::Flownode for FlowDualEngine {
}
async fn handle_mark_window_dirty(&self, _req: DirtyWindowRequest) -> MetaResult<FlowResponse> {
// todo: implement
unimplemented!()
unreachable!()
}
}
@@ -947,8 +946,7 @@ impl common_meta::node_manager::Flownode for StreamingEngine {
}
async fn handle_mark_window_dirty(&self, _req: DirtyWindowRequest) -> MetaResult<FlowResponse> {
// todo: implement
unimplemented!()
unreachable!()
}
}