risingwave_stream/from_proto/
row_merge.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use 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}