risingwave_stream/from_proto/
row_merge.rs1use risingwave_common::util::column_index_mapping::ColIndexMapping;
16use risingwave_pb::stream_plan::RowMergeNode;
17
18use crate::executor::RowMergeExecutor;
19use crate::from_proto::*;
20
21pub struct RowMergeExecutorBuilder;
22
23impl ExecutorBuilder for RowMergeExecutorBuilder {
24 type Node = RowMergeNode;
25
26 async fn new_boxed_executor(
27 params: ExecutorParams,
28 node: &Self::Node,
29 _store: impl StateStore,
30 ) -> StreamResult<Executor> {
31 let [lhs_input, rhs_input]: [_; 2] = params.input.try_into().unwrap();
32 let lhs_mapping = ColIndexMapping::from_protobuf(node.lhs_mapping.as_ref().unwrap());
33 let rhs_mapping = ColIndexMapping::from_protobuf(node.rhs_mapping.as_ref().unwrap());
34
35 let exec = RowMergeExecutor::new(
36 params.actor_context,
37 lhs_input,
38 rhs_input,
39 lhs_mapping,
40 rhs_mapping,
41 params.info.schema.clone(),
42 );
43 Ok(Executor::new(params.info, exec.boxed()))
44 }
45}